ol3-google-maps
Version:
OpenLayers 3 Google Maps integration library
122 lines (81 loc) • 3.94 kB
Markdown
OL3-Google-Maps
===============
[](https://travis-ci.org/mapgears/ol3-google-maps)
OpenLayers - Google Maps integration library. Create a map using
[OpenLayers 3](http://openlayers.org/) with the possibility to use Google Maps
as base map and much more.
Features
--------
Synchronizes:
- Layers (Google, Vector)
- Vector features (style, geometry)
Installation
-----------
You can install OL3-Google-Maps via npm:
npm install ol3-google-maps --save
Quick start
-----------
To use OL3-Google-Maps, first you need to load Google Maps API. It's important to load Google Maps API **before** OL3-Google-Maps. You also need to use your own Google Maps API key.
<script
type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?v=3&key=<YOUR_KEY>">
</script>
Then, load the OL3-Google-Maps script included in the tarball of the version you downloaded, which already includes OpenLayers so you don't need to load OpenLayers too. See the [Releases](https://github.com/mapgears/ol3-google-maps/releases) section to download the latest version.
<script type="text/javascript" src="ol3gm.js"></script>
It is recommended to load the CSS file included in there as well.
<link rel="stylesheet" href="ol3gm.css" type="text/css" />
Then, in your existing OpenLayers application, activate OL3-Google-Maps. Here's a simple example:
var center = [-7908084, 6177492];
// This dummy layer tells Google Maps to switch to its default map type
var googleLayer = new olgm.layer.Google();
var map = new ol.Map({
// use OL3-Google-Maps recommended default interactions
interactions: olgm.interaction.defaults(),
layers: [
googleLayer
],
target: 'map',
view: new ol.View({
center: center,
zoom: 12
})
});
var olGM = new olgm.OLGoogleMaps({map: map}); // map is the ol.Map instance
olGM.activate();
Live examples
-------------
See OL3-Google-Maps in action:
* [Simple](http://mapgears.github.io/ol3-google-maps/examples/dist/examples/simple.html)
* [Vector](http://mapgears.github.io/ol3-google-maps/examples/dist/examples/vector.html)
* [Label](http://mapgears.github.io/ol3-google-maps/examples/dist/examples/label.html)
* [Concept](http://mapgears.github.io/ol3-google-maps/examples/dist/examples/concept.html)
See all other examples at:
http://mapgears.github.io/ol3-google-maps/examples/
Developing
-----------
See the [developing](DEVELOPING.md) instructions if you want to contribute
new features or patches to OL3-Google-Maps.
Note that contributions have to meet some minimum quality requirements
in order to be included in the official package, but that's the same
as with any mature open source project.
Known Limitations
-----------------
Please see the known [limitations](LIMITATIONS.md) of this library in details.
Bugs and issues
---------------
For bugs or feature requests, use the
[issue tracker](https://github.com/mapgears/ol3-google-maps/issues)
If you need help with the library, use
[StackOverflow under the ol3-google-maps tag](http://stackoverflow.com/questions/tagged/ol3-google-maps)
Our commitment
--------------
We, at Mapgears, are definitely committed to continuing to support
this project as long as it will make sense to do so. We use it for our
own products and for projects with our customers, and will continue to
make it evolve and address issues as we go as part of that work.
However, just like with any open source project, its development is
driven by the funding we can get through customer projects, so if
there are some limitations or issues that are important to you and
your organization, we'd be happy to provide you a quote for a support
package or for working on those specific limitations, and of course
you are also welcome to work on them yourself and contribute the fix.