在這裏我有一個代碼顯示用戶的地方,但我想根據用戶位置顯示地點。找到谷歌地圖用戶的位置v3
我如何獲取用戶的位置並在地圖上顯示?
我:
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&libraries=places"></script>
<script>
function initialize() {
var markers = [];
var map = new google.maps.Map(document.getElementById('map-canvas'), {
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var defaultBounds = new google.maps.LatLngBounds(
new google.maps.LatLng(-33.8902, 151.1759),
new google.maps.LatLng(-33.8474, 151.2631));
map.fitBounds(defaultBounds); ... ... ... etc.
我嘗試在傳感器補充:真實的,但沒有奏效。
有什麼辦法解決這個問題嗎?
確定,這將如何看起來像在我的代碼? – MikiMrki
你想要你的代碼做什麼?文檔中的示例獲取用戶的位置並將該地圖放在該位置上。 –