views:

107

answers:

1

I create a Google map for my site using the API. It points to the correct location but the problem is it does not show the location name.

See: http://myrtlebeachsweeps.com/ticket/angelos-steak-and-pasta . Zoom-in. Notice that the map shows the name of Cancun Lagoon Golf but it does not show the name of Angelo's.

This direct Google maps link shows the correct location and the name. Both locations are the same but it does not show the location name in my site.

Please help.

Update:

(From the OP) Link to the main JavaScript used.

Map activating code:

<script type="text/javascript">
    function LoadMapSearchControl() 
    {
        var options = { //zoomControl : GSmapSearchControl.ZOOM_CONTROL_ENABLE_ALL, // url : "http://www.google.com/corporate/index.html", idleMapZoom : 16, //activeMapZoom : GSmapSearchControl.ACTIVE_MAP_ZOOM }
        new GSmapSearchControl( document.getElementById("mapsearch"), "<? echo"$cmpyaddress"?>", options ); 
    }
    GSearch.setOnLoadCallback(LoadMapSearchControl); 
</script>
+1  A: 

The Maps API and Google Maps use different tile sets.

See http://code.google.com/apis/maps/articles/yourfirstmap.html section 3.5

Marcelo