gpt4 book ai didi

android - 使用计时器从 JSON 添加多个标记

转载 作者:行者123 更新时间:2023-11-29 21:43:27 24 4
gpt4 key购买 nike

我阅读了与我的问题相关的所有相关文章..但我没有完整的答案...

请帮我做这个应用程序!我的应用程序:使用从 MySQL 数据库解析的 JSON 文件中的 TIMER 添加多个标记:这是 JSON:

[
{
"id": "11",
"sigma": "10",
"gs": "10",
"longtitude": "10",
"latitude": "10",
"altitude": "1000"
},
{
"id": "10",
"sigma": "45",
"gs": "FU",
"longtitude": "40",
"latitude": "40",
"altitude": "977.0"
}
]

和我的应用程序代码:

                    for (int i=0; i<parentArray.length(); i++) {
JSONObject sonJson = parentArray.getJSONObject(i);
longtitude = sonJson.getDouble("longtitude");
latitude = sonJson.getDouble("latitude");
altitude=sonJson.getDouble("altitude");

LatLng latLng = new LatLng(longtitude, latitude);

arrayti.add(""+longtitude);

最佳答案

你做对了。不要在 myLocation 中设置经纬度,而是像这样将它们直接添加到 map

LatLng home=new LatLng(latitude,longitude);
googleMap.addMarker(new MarkerOptions().position(home).title("Workplace"));

关于android - 使用计时器从 JSON 添加多个标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34287685/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com