Hello,

I'm using a simple Google Map with API v3 :
 - Loading "http://maps.google.com/maps/api/js?sensor=false";
 - Using with the JS at end of my message (very simple, I took the
basic example).
 - With this configuration, I get my map, with an ad at the lower left
corner : OK.

Now, my client got a Google Premier Account to remove some limitations
AND the ad.
The account is attached to a domain, so I configured the domain on my
local machine, and when I go to "http://the-domain/map.html"; I see the
map.
Now, i change the loaded JS address to add the "client" parameter :
-> http://maps.google.com/maps/api/js?sensor=false&client=gme-lizeo

Nothing changes, there is still the ad, nothing different :(

Is there something to do ? A known incompatibility between Google
Premier and API v3 (is the Premier account supported only with API v ≤
2 ?) ?

Thanks for your help


============= JS CODE ================
<script type="text/javascript">
  function initialize() {
    var myLatlng = new google.maps.LatLng(-34.397, 150.644);
    var myOptions = {
      zoom: 8,
      center: myLatlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    var map = new google.maps.Map(document.getElementById
("map_canvas"), myOptions);
  }
</script>
====================================

--

You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-api?hl=.


Reply via email to