0.0.18 • Published 8 years ago
gi-feature-map v0.0.18
map feature
Google map with some extensions and additions to simplify usage.
Global dependencies
Dependencies
google map(external)
Installation
Install this package with sackmesser:
make feature-install-mapor when sackmesser is not used:
yarn install gi-feature-mapAfter the installation has completed, you can import the module files:
JS:
// import feature class
import Map from 'gi-feature-map'
// ...
base.features.add('map', Map)Make sure you provide the global dependencies in your webpack config file:
new webpack.ProvidePlugin({
base: 'gi-js-base'
})Styles:
@import 'gi-feature-map/src/style';Markup:
<script src="//maps.googleapis.com/maps/api/js?libraries=geometry&key=[YOUR_API_KEY]"></script>Browser compatibility
- Newest two browser versions of Chrome, Firefox, Safari and Edge
- IE 10 and above
Development
make buildornpm run build- Build production version of the feature.make devornpm run dev- Build demo of the feature, run a watcher and start browser-sync.make testornpm run test- Test the feature.make jsdoc- Update documentation inside thedocsfolder.make publish- Publish npm package.