Google API を使用して Web サイトにマップを表示していますが、正しく表示されません。
API リンク : https://developers.google.com/maps/documentation/javascript/reference
これは、Google APIを呼び出すための私のコードです。
var latlng = new google.maps.LatLng(latitude, longitude);
var mapOptions = {
zoom: 6,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP,
zoomControl: true,
mapTypeControl: true,
mapMaker:true
};
var mapInstance = new google.maps.Map(document.getElementById("map"), mapOptions);
var marker = new google.maps.Marker({
map:mapInstance,
draggable:true,
animation: google.maps.Animation.DROP,
position: latlng
});
1 本の垂直の白い線が表示されます。その線を削除するには??