sunswordrie
Новичок
Google maps в IE отображается карта не целиком.
Использую Google Map во всех браузерах всё норм (фф 2 и опера посл.), в осле же почему-то не грузится правый кусок %) то есть карта есть, но она грузится не целиком %) и центровка выполняется не корректно.
Эксплорер:
Фаер:
Код:
В хеде прописано:
Сам скрипт и вывод:
-~{}~ 03.04.08 14:54:
неужели никто не сталкивался с этим?
-~{}~ 10.04.08 22:40:
Проблему решил, заново всё переписал с 0, фиг кому скажу как т.к. никто даж не пытался помочь
Использую Google Map во всех браузерах всё норм (фф 2 и опера посл.), в осле же почему-то не грузится правый кусок %) то есть карта есть, но она грузится не целиком %) и центровка выполняется не корректно.
Эксплорер:
Фаер:
Код:
В хеде прописано:
PHP:
<script src="http://maps.google.com/maps?file=api&v=2&key=ТУТ КЛЮЧ САЙТА&hl=ru" type="text/javascript" charset="utf-8"></script>
PHP:
<div id="map" style="width: 550px; height: 450px;BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; BORDER-LEFT: #000000 1px solid; BORDER-BOTTOM: #000000 1px solid"></div>
<script type="text/javascript">
//<![CDATA[
if (GBrowserIsCompatible()) {
// A function to create the marker and set up the event window
// Dont try to unroll this function. It has to be here for the function closure
// Each instance of the function preserves the contends of a different instance
// of the "marker" and "html" variables which will be needed later when the event triggers.
function createMarker(point,html) {
var marker = new GMarker(point);
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml(html);
});
return marker;
}
// Display the map, with some controls and set the initial location
var map = new GMap2(document.getElementById("map"));
map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(xxx,yyy),zz);
// Set up three markers with info windows
var point = new GLatLng(xxx,yyy);
var marker = createMarker(point,'<div style="width:240px">Некоторая информация о месте</div>')
map.addOverlay(marker);
}
// display a warning if the browser was not compatible
else {
alert("Sorry, the Google Maps API is not compatible with this browser");
}
// This Javascript is based on code provided by the
// Blackpool Community Church Javascript Team
// [url]http://www.commchurch.freeserve.co.uk/[/url]
// [url]http://econym.googlepages.com/index.htm[/url]
//]]>
</script>
неужели никто не сталкивался с этим?
-~{}~ 10.04.08 22:40:
Проблему решил, заново всё переписал с 0, фиг кому скажу как т.к. никто даж не пытался помочь