Releases: SamvelRaja/google-maps-addon
Releases · SamvelRaja/google-maps-addon
V_0.1.1
V_0.1.0
V_0.0.10
Merge pull request #21 from SamvelRaja/patch_add_demo Added the demo for the addon and removed the gif file
V_0.0.9
V_0.0.8
Initial info window support added
infowindow : {
content : 'Your HTML content here',
latitude : 'Your infowindow latitude if empty will takes up the center latitude',
longitude : 'Your infowindow longitude if empty will takes up the center longitude',
maxWidth : 'The maximum width of the infowindow' //in number
pixelOffset : 'The offset, in pixels, of the tip of the info window from the point on the map at whose geographical coordinates the info window is anchored. If an InfoWindow is opened with an anchor, the pixelOffset will be calculated from the anchors anchorPoint property.
}
inside mapOptions
V_0.0.7
Thinked all over the night,
The Aim of this addon to be easy consumption.
Then why the heck i added the complexity of having a additional option unnecessarily.
Removed the option immediately with a version bump
V_0.0.6
Multiple markers support provided.
mapOptions : {
...
markers : [
{
latitude : '12.976299881670053',
longitude : '80.13112306594849',
title : 'first marker',
click : function(rec_event){
//Event callback
},
animation : 'DROP',
timeout : 2000
},
{
latitude : '13.976299881670053',
longitude : '80.13112306594849',
title : 'first marker',
click : function(rec_event){
//Event callback
},
animation : 'BOUNCE',
timeout : 4000
}
]
}
markers have more priority than marker property
And
Added demo gif
V_0.0.5
Done few enhancements in the Markers like
- Marker Mouse events
- Animation (DROP and BOUNCE)
- timeout for markers
- Custom marker icons
V_0.0.4
Now the first step to support markers
MapOptions: {
marker : {
latitude : 0.011,
longitude: 1.223,
title : 'hello world'
}
}
V_0.0.3
Linked the github repo in the package.json file to show up in npm website