1. Home >
  2. Documentation >
  3. Data types
 

Address

Automatic address resolution Most functions automatically solve address throught address parameter instead of using latLng. For example, the function marker use a latLng to position a new marker,...

Callback

The callback function takes one parameter which is the result of the action asserted and depends on the request. marker will send a

Event

Events to attach to a google map are stored in events and onces. All of them use this prototype : function(sender <mixed>, event <js event>, context <object>) sender depend of the...

Id

Each item created can be directly accessed or identified on events thanks to a unique id. If not defined, an auto generated id will be set. In this example, marker are removed or updated thanks to its...
 

LatLng

The google.maps.LatLng can be simplified by {lat:float, lng:float} : object of 2 floats [lat, lng] : array...

LatLngBounds

The google.maps.LatLngBounds can be simplified by : {ne:LatLng, sw:LatLng} : object of 2 LatLng [ne,...

Tag

Each item created can be accessed or identified on events thanks to tags. tag Tag can be string array of string a function which return an array of string In this example, marker are...
Close