繁体   English   中英

如何将用户输入标记添加到我网站上的 Google 地图小部件,并从中获取纬度和经度数据?

[英]How do I add a user-input marker to Google Maps widget on my website, and get the latitude and longitude data from it?

如何将用户输入标记添加到我网站上的 Google 地图小部件,并从中获取纬度和经度数据?

现在我正在构建一个应用程序,它必须允许用户将标记放置到任何位置,以便我可以获取该数据并对其进行处理。

   <script>
                var map;
                function initMap() {
                  map = new google.maps.Map(document.getElementById('map'), {
                    zoom: 2,
                    center: new google.maps.LatLng(2.8,-187.3),
                    mapTypeId: 'terrain'
                  });

                  // Create a <script> tag and set the USGS URL as the source.
                  var script = document.createElement('script');
                  // This example uses a local copy of the GeoJSON stored at
                  // http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp
                  script.src = 'https://developers.google.com/maps/documentation/javascript/examples/json/earthquake_GeoJSONP.js';
                  document.getElementsByTagName('head')[0].appendChild(script);
                }

                // Loop through the results array and place a marker for each
                // set of coordinates.
                window.eqfeed_callback = function(results) {
                  for (var i = 0; i < results.features.length; i++) {
                    var coords = results.features[i].geometry.coordinates;
                    var latLng = new google.maps.LatLng(coords[1],coords[0]);
                    var marker = new google.maps.Marker({
                      position: latLng,
                      map: map
                    });
                  }
                }
              </script>

现在我正在使用它,但这不提供任何用户提交的标记。

尝试运行这个有效的jsfiddle来演示和指导用户如何在 Google 地图上放置标记。 请注意,它基于 Google 添加和删除标记的示例

完整的JS代码如下:

var map;
var markers = [];

function initMap() {
  var haightAshbury = {
    lat: 37.769,
    lng: -122.446
  };

  map = new google.maps.Map(document.getElementById('map'), {
    zoom: 12,
    center: haightAshbury,
    mapTypeId: 'terrain'
  });

  // This event listener will call addMarker() when the map is clicked.
  map.addListener('click', function(event) {
    addMarker(event.latLng);
  });

  // Adds a marker at the center of the map.
  addMarker(haightAshbury);
}

// Adds a marker to the map and push to the array.
function addMarker(location) {
  var marker = new google.maps.Marker({
    position: location,
    map: map
  });
  markers.push(marker);
}

您可以从地图的单击事件侦听器中获取标记的坐标,例如:

  map.addListener('click', function(event) {
    console.log(event.latLng.lat());
    console.log(event.latLng.lng());
    addMarker(event.latLng);
  });

或者从addMarker方法:

function addMarker(location) {
  var marker = new google.maps.Marker({
    position: location,
    map: map
  });
  console.log(marker.getPosition().lat());
  console.log(marker.getPosition().lng());
  markers.push(marker);
}

希望这可以帮助!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM