
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@ineentho/olgm
Advanced tools
OpenLayers - Google Maps integration library as ES2015 modules to use with ol
.
Add the olgm
package as a dependency to your project.
npm install olgm --save
ol
will be installed as a peer dependency.
To use olgm
, the Google Maps API must be loaded externally. It's important to load Google Maps API before your bundle. 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>
<script type="text/javascript" src="bundle.js"></script>
It is recommended to import olgm/ol3gm.css
along with ol/ol.css
, for instance using style-loader
.
Then, in your existing OpenLayers application, activate OL-Google-Maps. Here's a simple example:
import 'ol/ol.css';
import 'olgm/ol3gm.css';
import Map from 'ol/map';
import View from 'ol/view';
import Google from 'olgm/layer/google';
import interaction from 'olgm/interaction';
import OLGoogleMaps from 'olgm/olgooglemaps';
var center = [-7908084, 6177492];
// This dummy layer tells Google Maps to switch to its default map type
var googleLayer = new Google();
var map = new Map({
// use OL3-Google-Maps recommended default interactions
interactions: interaction.defaults(),
layers: [
googleLayer
],
target: 'map',
view: new View({
center: center,
zoom: 12
})
});
var olGM = new OLGoogleMaps({map: map}); // map is the ol.Map instance
olGM.activate();
olgm
modules work like ol
modules. Consult the ol
documentation for how to use the modules and how to bundle ol
and olgm
with your application.
FAQs
ol3-google-maps as ES2015 modules
We found that @ineentho/olgm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.