Hi Duketown
Thanks for your questions. Here's the html-code of the page:
{cms_module module='GoogleMaps' map='Berghalde' zoom="12" marker="Bauprojekt"}
1. I have tried it with a second marker with a different marker icon. The second marker does not show either.
2. I have changed the zoom level from 12 to 16. No success.
3. Here's the part of the source of the rendered page related to the marker:
var points = [];
var markers = [];
var counter = 0;
var icon = [];
icon[0] = new GIcon();
icon[0].image = "
http://localhost/cms_made_simple\module ... yellow.png";
icon[0].shadow = "
http://localhost/cms_made_simple\module ... faults.png";
icon[0].shadowSize = new GSize(40,28);
icon[0].iconSize = new GSize(16,28);
icon[0].iconAnchor = new GPoint(8,14);
icon[0].infoWindowAnchor = new GPoint(8,14);
icon[1] = new GIcon();
icon[1].image = "
http://localhost/cms_made_simple\module ... 28_red.png";
icon[1].shadow = "
http://localhost/cms_made_simple\module ... faults.png";
icon[1].shadowSize = new GSize(40,28);
icon[1].iconSize = new GSize(16,28);
icon[1].iconAnchor = new GPoint(8,14);
icon[1].infoWindowAnchor = new GPoint(8,14);
var map = null;
if (GBrowserIsCompatible()) {
var mapObj = document.getElementById("GoogleMaps1");
if (mapObj != "undefined" && mapObj != null) {
map = new GMap2(document.getElementById("GoogleMaps1"));
map.setCenter(new GLatLng(47.322825, 8.662119), 12, G_HYBRID_MAP);
var customUI = map.getDefaultUI();
customUI.controls.scalecontrol = true;
customUI.controls.smallzoomcontrol3d = false;
customUI.controls.largemapcontrol3d = false;
customUI.zoom.scrollwheel = false;
customUI.controls.maptypecontrol = true;
map.setUI(customUI);
var point = new GLatLng(47.32276,8.66180);
var marker = createMarker(point,"Bauprojekt","Bauprojekt", 0,"");
map.addOverlay(marker);
var point = new GLatLng(47.3228246,8.6621197);
var marker = createMarker(point,"Berghalde Marker","Berghalde Marker", 1,"");
map.addOverlay(marker);
As you see, the markers a included in the page
4. What do you mean with "Maybe an url to the map for additional support?"?
Thanks
JoFe