我正在使用Google地圖v3。 而我是新手與Java腳本。 有誰知道如何在拖動時(拖動之前和之後)在Web瀏覽器上獲取光標位置? 請教我。如何在拖動時獲取光標的位置?
0
A
回答
0
我擁有的最佳選擇是跟蹤地圖中心點(緯度,經度)的移動。拖動事件似乎不提供鼠標在地圖上的位置。
查看這裏:http://jsfiddle.net/Hfu8D/
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
html, body, #map_canvas { margin: 0; padding: 0; height: 100% }
</style>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
var map;
var mapOptions = { center: new google.maps.LatLng(0.0, 0.0), zoom: 2,
mapTypeId: google.maps.MapTypeId.ROADMAP };
function initialize() {
map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
google.maps.event.addListener(map, 'dragstart', function(event) {
document.getElementById("start").value = map.getCenter();
});
google.maps.event.addListener(map, 'dragend', function(event) {
document.getElementById("end").value = map.getCenter();
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
start: <input id="start" size="30"><br>
end: <input id="end" size="30">
<div id="map_canvas"></div>
</body>
</html>
0
相關問題
- 1. 獲取光標位置
- 2. SWT獲取光標位置
- 3. 如何獲取TextInput中的光標位置和光標位置後的內容?
- 4. 查找jQuery可拖動光標位置
- 5. JqueryUI拖動:光標與拖動元素不在同一位置
- 6. 如何在拖動時禁用光標?
- 7. 如何在被拖動時獲取mkannotation的位置
- 8. 拖動時獲取觸摸位置
- 9. 在鍵上獲取光標位置
- 10. 在mailItem中獲取光標位置htmlbody
- 11. 在AngularJs中獲取Textarea光標位置
- 12. 獲取光標位置或光標所在行的行數TinyMCE
- 13. 拖動之前如何獲取標記位置?
- 14. wpf如何在容器中拖動控件時獲取鼠標位置?
- 15. 拖動時獲取鼠標位置(JS + HTML5)
- 16. jQuery - 拖動鏈接時獲取鼠標位置
- 17. 拖動時始終獲取鼠標位置
- 18. jQuery GeoComplete - 拖動標記時獲取位置
- 19. 拖動時更改光標
- 20. Telerik RadEditor在拖動時移動光標
- 21. 獲取光標在滾動條面板上的位置
- 22. 在拖動時獲取MKAnnotation的座標
- 23. 獲取拖動克隆的位置jquery
- 24. 如何獲得光標位置
- 25. WPF拖動光標在默認光標
- 26. 如何在OpenGL中獲取光標位置?
- 27. `ansi-terminal`如何在Haskell中獲取光標位置
- 28. 如何在Edittext中獲取光標位置
- 29. 如何在EditText中獲取光標位置(x,y)android
- 30. 如何在bash中獲取光標位置?
你的意思是(緯度,經度),或像素的位置? –