2016-08-18 28 views
-1

Googleマップにマーカーを表示する必要があります。私はGoogleマップのマーカーの位置が間違っている

を取得しています/私はGoogleマップを開き、場所を検索し、URLから私は緯度と経度を見つけて、コードで使用sample

var neighborhoods = [ 
{ lat: 17.009743, lng: 81.7738098 }, //devi chowk 
{ lat: 17.007859, lng: 81.78112 }, //hdfc bank - danavaipeta, 
{ lat: 17.0051851, lng: 81.7763473 }, //swamy theater 
{ lat: 17.0095814, lng: 81.781733 } //baskin robbins 
]; 

     var markers = []; 
     var map; 

     function initMap() { 
     map = new google.maps.Map(document.getElementById('map'), { 
      zoom: 12, 
      center: {lat: 52.520, lng: 13.410} 
     }); 
     } 

     function drop() { 
     clearMarkers(); 
     for (var i = 0; i < neighborhoods.length; i++) { 
      addMarkerWithTimeout(neighborhoods[i], i * 200); 
     } 
     } 

     function addMarkerWithTimeout(position, timeout) { 
     window.setTimeout(function() { 
      markers.push(new google.maps.Marker({ 
      position: position, 
      map: map, 
      animation: google.maps.Animation.DROP 
      })); 
     }, timeout); 
     } 

     function clearMarkers() { 
     for (var i = 0; i < markers.length; i++) { 
      markers[i].setMap(null); 
     } 
     markers = []; 
     } 

で提供される標準的なGoogleのコードを使用していますアニメーションのドロップと4つのマーカーが表示されている位置はエラーです(西方向に約500メートル)。このエラーはすべてのマーカーで共通です。

私は正しい位置を取得しますが(明らかに)、アプリケーションで同じ座標を使用するとエラーが発生します。

blue circle is the correct position and red flags are my markers

下のスクリーンショットを参照してください誰かが私が問題に何ができるか理解するのを助けることができますか?

+0

ためのLNGが表示されます緯度経度 –

+0

どのようにしてポイントの緯度/経度を決定しましたか? – geocodezip

答えて

1

Google MapsのURLの座標は、検索した場所の場所ではなく、地図の中心です。

HDFC銀行(私のコンピュータ上):URLで https://www.google.com/maps/search/hdfc+bank,+danavaipeta/@17.0118051,81.7820404,16z/data=!3m1!4b1

座標:場所APIからHDFC銀行の17.0118051,81.7820404

http://www.geocodezip.com/v3_example_geo2.asp?addr1=(17.0118051,81.7820404)&geocode=1&zoom=16&addr2=hdfc+bank,+danavaipeta&place=2

座標:17.007877、81.7834242

enter image description here

0

WheあなたはGoogleマップを開き、あなたは場所をクリックし、共有をクリックする必要があります。 http://gis.stackexchange.com/questions/8650/measuring-accuracy-of-:enter image description here

のために私は見当がつかないが、おそらくこのようSTH緯度、場所

関連する問題