fabrizioq / angular-google-staticmaps

An AngularJS directive to quickly insert Google Static Maps.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Angular Google Static Maps Directive Build Status Dependency Status

Homepage

An AngularJS directive to quickly insert Static Maps.

Usage

  1. bower install --save angular-google-staticmaps
  2. Include dependencies in your HTML.
  3. Load the wu.staticGmap module for your Angular app.
  4. Use the static-gmap directive.

Example

See the homepage for a live example.

<static-gmap size="137x137" markers="markers" sensor="false" zoom="14"></static-gmap>

The markers attribute is an expression evaluating to either one or multiple markers. Markers have the following format:

$scope.markers = [{
    color: 'blue',
    label: 'S',
    coords: [lat, lon]
}];

Attributes

Any attribute is directly passed to the generated URL the image is loaded from, except for markers, which gets formatted according to the specification.

size (required)

The size attribute is required and must be specified as wxh whereby w denotes the width and pixels and h the height.

sensor (required)

The sensor attribute must explicitly be set to either true or false.

Contributing

Pull requests welcome. Only change files in src and don't bump any versions. Please respect the code style in place.

License

MIT

About

An AngularJS directive to quickly insert Google Static Maps.


Languages

Language:HTML 46.0%Language:CoffeeScript 32.0%Language:JavaScript 22.0%