Skip to content

Releases: SamvelRaja/google-maps-addon

V_0.1.1

23 Dec 07:05
Compare
Choose a tag to compare

Major changes added by @erkie in #29

V_0.1.0

15 Oct 17:36
Compare
Choose a tag to compare

Major Version bump since we removing one backward compatibility support MapOptions

Two way binding has been supported in #24 by @erkie

V_0.0.10

07 Oct 11:13
Compare
Choose a tag to compare
Merge pull request #21 from SamvelRaja/patch_add_demo

Added the demo for the addon and removed the gif file

V_0.0.9

26 Sep 07:34
Compare
Choose a tag to compare

1.Fixed few bug fixes by @erkie
2.Added dummy app for easy development
3.Added the build status tag

V_0.0.8

16 Aug 15:10
Compare
Choose a tag to compare

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

10 Aug 04:42
Compare
Choose a tag to compare

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

09 Aug 20:54
Compare
Choose a tag to compare

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

09 Aug 13:01
Compare
Choose a tag to compare

Done few enhancements in the Markers like

  • Marker Mouse events
  • Animation (DROP and BOUNCE)
  • timeout for markers
  • Custom marker icons

V_0.0.4

27 Jul 18:29
Compare
Choose a tag to compare

Now the first step to support markers

MapOptions: {
  marker : {
  latitude : 0.011,
  longitude: 1.223,
  title : 'hello world'
 }
} 

V_0.0.3

26 Jul 19:22
Compare
Choose a tag to compare

Linked the github repo in the package.json file to show up in npm website