0
我拉數據庫中的緯度長點,將它們合併,然後使用反向查找在我的地圖上放置標記。所有的標記都放在地圖上,但它們只是一點點關閉。然後我去maps.google.com並將這些點放到搜索欄中,並且它們完美地工作。有什麼建議麼?謝謝!該功能可按低於:如果來自GeoCode的Google地圖標記有點關閉
var lat = resultP[i].get("lat");
var log = resultP[i].get("long");
var latlng = new google.maps.LatLng(lat, log);
geocoder.geocode({ 'latLng': latlng}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
} else {
alert("Geocode was not successful for the following reason: " + status);
} //end else
什麼你受了一點意思了嗎? –
例如,緯度是42.476185和日誌是-96.363533然後我運行geocoder.geocode和我的緯度和日誌變爲42.4766488,-96.36351719999999(results [0] .geometry.location) –
我一直在努力,這似乎是我的標記在最近的道路上呈現。我正試圖在網球場/壘球場上放置一個標記。我如何讓標記不要走近最近的道路?謝謝。 –