Found an answer to this!  I used geolocationmarker-compiled.js (at 
http://code.google.com/p/google-maps-utility-library-v3/source/browse/trunk/geolocationmarker/src/geolocationmarker-compiled.js?r=379)
 
and then added

var GeoMarker; 

GeoMarker = new GeolocationMarker(); 
        GeoMarker.setCircleOptions({fillColor: '#808080'}); 
 
        google.maps.event.addListenerOnce(GeoMarker, 'position_changed', 
function() { 
          map.setCenter(this.getPosition()); 
          map.fitBounds(this.getBounds()); 
        }); 
 
        google.maps.event.addListener(GeoMarker, 'geolocation_error', 
function(e) { 
          alert('There was an error obtaining your position. Message: ' + 
e.message); 
        }); 
 
        GeoMarker.setMap(map); 
 
On Tuesday, May 7, 2013 12:52:29 PM UTC-7, Chandra Miller wrote:
>
> CSS for the map (#map_canvas) is at '
> alert.fcd.maricopa.gov/alert/Google/v3/css/mobile.css'<http://alert.fcd.maricopa.gov/alert/Google/v3/css/mobile.css%27>;.
>  
> You can view page source of mobile.html through browser.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-maps-js-api-v3+unsubscr...@googlegroups.com.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
Visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to