Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can find all google maps v3 event list?

Tags:

google-maps

As title, I searched official google maps api reference and other site, I can't find a doc list comprehensive available events. Please give me a hint to get all the v3 events. Thanks a lot.

like image 568
Matt Avatar asked Apr 08 '10 05:04

Matt


People also ask

How do I see events on Google Maps?

Simply open the sidebar menu, tap “Your Places” and then tap “Upcoming.” If you don't want to see specific events on the map, you can hide them by tapping on the event from the map and then tapping “Dismiss.”

How do I add an event to Google Maps?

To add an event, head to Google Maps on Android, tap on Contribute >Events > Add a public event. You can add an event name, tag the location, and add the time and date of the event as well. There's an option to add an image, write more event details, and add description as well.

How many types of viewing option is are available in Google Maps?

The following map types are supported in Google Maps API: ROADMAP (normal, default 2D map) SATELLITE (photographic map) HYBRID (photographic map + roads and city names)


2 Answers

API Reference

List of all events (with demo)

like image 189
armandino Avatar answered Sep 20 '22 18:09

armandino


In the Google Maps API docs, for google.maps.Map class [no direct listing sorry, but scroll down a bit] there are a list of events which the Map itself will fire. The events are:

  • bounds_changed
  • center_changed
  • click
  • dblclick
  • drag
  • dragend
  • dragstart
  • heading_changed
  • idle
  • maptypeid_changed
  • mousemove
  • mouseout
  • mouseover
  • projection_changed
  • resize
  • rightclick
  • tilesloaded
  • tilt_changed
  • zoom_changed
like image 28
Ross Avatar answered Sep 18 '22 18:09

Ross