作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想要做的是在我的网站上嵌入 map 并允许用户在其上放置标记(另外是否有办法控制用户可以在 map 上放置多少个标记?)并且我也想得到这些标记放置在 map 上后的坐标。从我读过的 google map javascript api V3 文档中,我可以自己在 map 上放置标记,但我没有找到一种方法让用户将它们放在 map 上。有办法做到吗?
最佳答案
来源:http://code.google.com/apis/maps/documentation/javascript/events.html滚动down to accessing UI 事件中的参数。
var map;
function initialize() {
var myLatlng = new google.maps.LatLng(-25.363882,131.044922);
var myOptions = {
zoom: 4,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
google.maps.event.addListener(map, 'click', function(event) {
placeMarker(event.latLng);
});
}
function placeMarker(location) {
var marker = new google.maps.Marker({
position: location,
map: map
});
map.setCenter(location);
}
关于javascript - 允许用户向谷歌地图添加标记并获取坐标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5757533/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!