angular-google-staticmaps

0.4.1 • Public • Published

Angular Google Static Maps Directive Build Status Dependency Status

Homepage

An AngularJS directive to quickly insert Static Maps.

Usage

IMPORTANT: This code was copied from https://github.com/passy/angular-google-staticmaps and published to npm to help support one of our old projects we migrated from bower to npm.

  1. npm install 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

Readme

Keywords

none

Package Sidebar

Install

npm i angular-google-staticmaps

Weekly Downloads

0

Version

0.4.1

License

ISC

Unpacked Size

17.5 kB

Total Files

11

Last publish

Collaborators

  • dorongol