在地图上放置位置标记?

发布于 2024-10-22 09:28:55 字数 673 浏览 2 评论 0原文

在这里我想显示这个经纬度的引脚(标记)点位置地址?在这里,我发送一个中心,我还必须向 API 发送两个或更多中心(latlng)并获取更多标记位置。

jQuery:

var map;
var geocoder;
var address;

function initialize() {
  map = new GMap2(document.getElementById("map_canvas"));
  map.setCenter(new GLatLng(13.0423734,80.2727993), 10);
  map.setUIToDefault();
  geocoder = new GClientGeocoder();
}

HTML:

<body onload="initialize()">
  <div id="map_canvas" style="height:550px; width:950px">
  </div>
  </body>

我在其中包含此代码:

    map.setCenter(point, 13);
    var marker = new GMarker(point);
    map.addOverlay(marker);

here I want to display the pin(marker) point location address for this latlng? And here I send one center also I have to sent two or more center(latlng) to API and get more marker location.

jQuery:

var map;
var geocoder;
var address;

function initialize() {
  map = new GMap2(document.getElementById("map_canvas"));
  map.setCenter(new GLatLng(13.0423734,80.2727993), 10);
  map.setUIToDefault();
  geocoder = new GClientGeocoder();
}

HTML:

<body onload="initialize()">
  <div id="map_canvas" style="height:550px; width:950px">
  </div>
  </body>

where I include this code:

    map.setCenter(point, 13);
    var marker = new GMarker(point);
    map.addOverlay(marker);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

懵少女 2024-10-29 09:28:55
var map;
var geocoder;
var address;

function initialize() {
  map = new GMap2(document.getElementById("map_canvas"));
  map.setCenter(new GLatLng(13.0423734,80.2727993), 10);
  map.setUIToDefault();
  geocoder = new GClientGeocoder();
}


function showAddress(address) {
  geocoder.getLatLng(
    address,
    function(point) {
      if (!point) {
        alert(address + " not found");
      } else {
        map.setCenter(point, 13);
        var marker = new GMarker(point);
        map.addOverlay(marker);
      }
    }
  );
}

资源:
http://code.google.com/apis/maps /documentation/javascript/v2/services.html#Geocoding

var map;
var geocoder;
var address;

function initialize() {
  map = new GMap2(document.getElementById("map_canvas"));
  map.setCenter(new GLatLng(13.0423734,80.2727993), 10);
  map.setUIToDefault();
  geocoder = new GClientGeocoder();
}


function showAddress(address) {
  geocoder.getLatLng(
    address,
    function(point) {
      if (!point) {
        alert(address + " not found");
      } else {
        map.setCenter(point, 13);
        var marker = new GMarker(point);
        map.addOverlay(marker);
      }
    }
  );
}

resource:
http://code.google.com/apis/maps/documentation/javascript/v2/services.html#Geocoding

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文