我的位置选项未显示在Google地图中。下面是我的代码示例。你能帮我吗?
loadMap() {
this.geolocation.getCurrentPosition().then((position) => {
let latLng = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
let mapOptions = {
center: latLng,
zoom: 10,
streetViewControl: false,
zoomControl: false,
mapTypeControl: false,
controls : {
compass : true,
myLocationButton : true,
myLocation: true,
indoorPicker : false,
zoom : false,
mapToolbar : true
},
mapTypeId: google.maps.MapTypeId.ROADMAP,
}