在地图上放置位置标记?
在这里我想显示这个经纬度的引脚(标记)点位置地址?在这里,我发送一个中心,我还必须向 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
资源:
http://code.google.com/apis/maps /documentation/javascript/v2/services.html#Geocoding
resource:
http://code.google.com/apis/maps/documentation/javascript/v2/services.html#Geocoding