This package contains the following files of HERE maps in order to bundle them within your own project.
- https://js.api.here.com/v3/3.1/mapsjs-core.js
- https://js.api.here.com/v3/3.1/mapsjs-service.js
- https://js.api.here.com/v3/3.1/mapsjs-ui.js
- https://js.api.here.com/v3/3.1/mapsjs-mapevents.js
- https://js.api.here.com/v3/3.1/mapsjs-clustering.js
- https://js.api.here.com/v3/3.1/mapsjs-ui.css
After installing the package via npm or yarn you can import the different files via
import 'here-js-api/scripts/mapsjs-core';
import 'here-js-api/scripts/mapsjs-service';
import 'here-js-api/scripts/mapsjs-ui';
import 'here-js-api/scripts/mapsjs-mapevents';
import 'here-js-api/scripts/mapsjs-clustering';
The API scripts and styles are downloaded automatically via an included Rakefile.
The API version is maintained in the file API_VERSION.
Prerequisites:
In the repo root directory:
bundle
touch API_VERSION
rake download
# add, commit and push as needed
The API version at time of this writing is 3.1.
Let's say the HERE API had jumped to 3.2, and the repo maintainer wants to update the package.
echo 3.2 > API_VERSION
rake download
# add, commit and push as needed
NOTE: The automation assumes that the API CDN URL versioning pattern will remain consistent. Otherwise the Rakefile will have to be revised.