Esri Map Components for Web
Repo: https://github.com/jf990/esri-map-component
There are two components in this library: esri-map-view
and esri-scene-view
. They mostly work the same: esri-map-view
displays a map in a 2D map view and esri-scene-view
displays a 3D globe in a scene view.
These components are built with the ArcGIS API for JavaScript and Stencil starter project for building standalone web components.
Esri Map View
This is a custom web component to display an Esri map (2D flat map) on a web page. Using this component, you can place a map on any webpage inside a div
without writing any JavaScript code.
Example map view
<esri-map-view
apikey="YOUR_API_KEY"
basemap="osm-streets"
viewpoint="13.3761697,52.5166449,15"
layers="d3e5c29f5e404aa4b2de29a9f0e37996"
search="top-right"
symbol="pin:red"
symboloffset="0,0"
popuptitle="Brandenburg Gate"
popupinfo="This is a historic place you should visit">
</esri-map-view>
Attributes for esri-map-view
All attributes are optional. If an attribute is not provided then a default is used. If no attributes are set then an Open Street Map basemap is used. If a web map is used the initial viewpoint in the web map is used. Override this by setting viewpoint
.
Property | Attribute | Description | Type | Default |
---|---|---|---|---|
apikey |
apikey |
Set your API key. Learn more about API keys. | string |
"YOUR_API_KEY" |
basemap |
basemap |
Indicate a basemap id to use for the map. Select one of the basemap style options from the enumeration https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#basemap, or the item ID of a custom basemap style. This property will be ignored by webmap if that attribute is provided. If neither webmap nor basemap are set, then a default basemap is assigned. Options for basemap are defined in the ArcGIS API for JavaScript. |
string |
"osm-streets" |
layers |
layers |
Specify 0 or more layers to add on top of the basemap. Each layer is a string that is either a URL to the feature service, or the item ID of the feature service. Multiple layers can be separated with a comma. | string |
"" |
popupinfo |
popupinfo |
If symbol is set, tapping the image will show a pop-up. This is the content for that pop-up. |
string |
"" |
popuptitle |
popuptitle |
If symbol is set, tapping the image will show a pop-up. This is the title for that pop-up. |
string |
"" |
search |
search |
Include a search widget by indicating where on the map view it should appear. The valid values for this attribute are top-left , top-right , bottom-left , bottom-right . If this attribute is empty/missing or an invalid value then a search widget will not show. |
string |
"" |
symbol |
symbol |
Indicate a symbol to use to mark the location of the initial viewpoint. This is the fully qualified URL to a 64x64 px PNG image. CORS is respected when accessing the image. You can also specify green-pin to use a green map pin as the symbol. You can also specify pin:{color} to use a text symbol marker and the color value. Use a 6-digit HTML color value or the standard HTML color name. |
string |
"" |
symboloffset |
symboloffset |
Some symbols will require an x/y offset so that the registration point of the symbol is exactly on the map point. Here you can specify an x,y offset to adjust the symbol. Use a comma separated coordinate pair. | string |
"" |
viewpoint |
viewpoint |
Indicate an initial viewpoint to focus the map. This is a string of 3 comma-separated numbers expected: latitude (y), longitude (x), and levelOfDetail (LOD). Example: "22.7783,34.1234,9". You should set this if you set a basemap . You do not need to set this if you set webmap as the web map's initial viewpoint is used. If you do set viewpoint and webmap then this setting will override the initial viewpoint of the web map. |
string |
"" |
webmap |
webmap |
Indicate a web map id to use for the map. If neither webmap nor basemap are set, then a default basemap is assigned. |
string |
"" |
Esri Scene View
This is a custom web component to display an Esri scene (3D globe) on a web page. Using this component, you can place a globe on any webpage inside a div
without writing any JavaScript code.
Example scene view
<esri-scene-view
apikey="YOUR_API_KEY"
basemap="arcgis-imagery-standard"
layers="d3e5c29f5e404aa4b2de29a9f0e37996"
search="top-right"
symbol="pin:red"
viewpoint="13.3761697,52.5166449,15"
popuptitle="Brandenburg Gate"
popupinfo="This is a historic place you should visit">
</esri-scene-view>
Attributes for esri-scene-view
All attributes are optional. If an attribute is not provided then a default is used. If no attributes are set then an Open Street Map basemap is used. If a web scene is used then the initial viewpoint in the web scene is used. Override this by setting cameraPosition
or viewpoint
. If both are set then cameraPosition
overrides viewpoint
.
Property | Attribute | Description | Type | Default |
---|---|---|---|---|
apikey |
apikey |
Set your API key. Learn more about API keys. | string |
"YOUR_API_KEY" |
basemap |
basemap |
Indicate a basemap id to use for the map. This property will be overridden by webscene if that attribute is provided. If neither webscene nor basemap are set, then a default basemap is assigned. Options for basemap are defined in the ArcGIS API for JavaScript. |
string |
"arcgis-imagery-standard" |
cameraPosition |
camera-position |
Indicate the camera position for the initial scene viewpoint. This is a string of five comma separated numbers as follows: x,y,z,heading,tilt. If you set this it will override viewpoint settings. |
string |
"" |
layers |
layers |
Specify 0 or more layers to add on top of the basemap. Each layer is a string that is either a URL to the feature service, or the item ID of the feature service. Multiple layers can be separated with a comma. | string |
"" |
popupinfo |
popupinfo |
If symbol is set, tapping the image will show a pop-up. This is the content for that pop-up. |
string |
"" |
popuptitle |
popuptitle |
If symbol is set, tapping the image will show a pop-up. This is the title for that pop-up. |
string |
"" |
search |
search |
Include a search widget by indicating where on the scene view it should appear. The valid values for this attribute are top-left , top-right , bottom-left , bottom-right . If this attribute is empty/missing or an invalid value then a search widget will not show. |
string |
"" |
symbol |
symbol |
Indicate a symbol to use to mark the location of the initial viewpoint. This is the fully qualified URL to a 64x64 px PNG image. CORS is respected when accessing the image. You can also specify green-pin to use a green map pin as the symbol. You can also specify pin:{color} to use a text symbol marker and the color value. Use a 6-digit HTML color value or the standard HTML color name. |
string |
"" |
symboloffset |
symboloffset |
Some symbols will require an x/y offset so that the registration point of the symbol is exactly on the map point. Here you can specify an x,y offset to adjust the symbol. Use a comma separated coordinate pair. | string |
"" |
viewpoint |
viewpoint |
Indicate an initial viewpoint to focus the map. This is a string of 3 comma-separated numbers expected: latitude (y), longitude (x), and levelOfDetail (LOD). Example: "22.7783,34.1234,9". You should set this if you set a basemap . You do not need to set this if you set webscene as the web scene's initial viewpoint is used. However, this setting will override the web scenes initial viewpoint. The viewpoint is not used if cameraPosition is also set. For 3D scenes, the level of detail is translated into a 3D camera position height of Z-axis position. |
string |
"" |
webscene |
webscene |
Indicate a web scene id to use for the map. If neither webscene nor basemap are set, then a default basemap is assigned. |
string |
"" |
Maps, scenes, and layers
For more information about using ArcGIS maps, scenes, and layers visit https://developers.arcgis.com/javascript/latest/api-reference/.
Usage
There are several ways to include the custom component library in your web project.
Script tag
Review the demo in demos/www-demo
.
- Include a script tag on your page
<script src='https://unpkg.com/esr[email protected]/dist/esri-map-view.js'></script>
Then you can use the element anywhere in your HTML, template, JSX, etc.
Node modules
- Run
npm install esri-map-view --save
to add the module to yourpackage.json
. - Add a script tag
<script src='node_modules/esri-map-view/dist/esri-map-view.js'></script>
in the head of your index.html - Use the element anywhere in your HTML, template, JSX, etc.
Webpack
Review the demo in demos/webpack-demo
.
- Run
npm install esri-map-view --save
to add the module to yourpackage.json
. - Import the module in your JavaScript code
import esri-map-view;
. - Use the element anywhere in your HTML, template, JSX, etc.
In a stencil app
- Run
npm install esri-map-view --save
- Add an import to the npm packages
import esri-map-view;
- Use the element anywhere in your HTML, templates, JSX, etc.
Contributing
Esri welcomes contributions from anyone and everyone. Please see our guidelines for contributing.
Prerequisites
Have a recent version of node.js installed. Follow the stencil dependencies to learn more.
An ArcGIS account and an API key are required. Log in to ArcGIS Developers and create an API key with the scopes set to match the services you are testing. If you need more information see API keys.
Installation
Fork the repo and install the project dependencies with npm install
.
Edit index.html
and replace YOUR_API_KEY
with your own API key from your ArcGIS Developers dashboard.
Verify the installation by running npm test
or npm start
.
Start the local development server with npm start
. The development server will open a new browser tab with index.html
, and you should see a side-by-side map with a 2D map (esri-map-view
) on the left and a 3D map (esri-scene-view
) on the right.
At this point you can edit the code in the src
folder, propose changes with a pull request, or file an issue.
Develop
All of the source code is in the src
folder. There are two components, esri-map-view
for the 2D map display and esri-scene-view
for the 3D scene globe. Both components utilize common code in the utils
folder.
- Learn more about Stencil and developing custom components: https://stenciljs.com/docs/api
- Learn more about the ArcGIS API for JavaScript: https://developers.arcgis.com/javascript/latest/
Run the project locally using npm start
. Your default browser should open at http://localhost:3333
where you can review your changes. The test app loads index.html
where you should see a map and a scene side-by-side as depicted in the screenshot above.
Edit the tsx
and css
files in the src
folder. The readme.md
files are automatically generated from source code comments, so they should not be edited directly.
Testing
Create unit tests in *.spec.ts
files. They are picked up by Jest. See Jest documentation to learn more about unit testing with Jest.
Run the tests with npm test
.
We expect all code to have a unit test with adequate coverage. If you add new code, there should be unit tests to verify the new functionality. If you modify existing functionality, verify the unit tests match. All tests must pass.
If your new functionality affects the demos be sure to update the demo code in the demos
folder. Verify the demos work as expected.
Building
Once your new functionality is ready to release, perform the following:
- Regenerate the documentation. Run
npm run build
. - Update README.md, if required. Documentation updates are required if you change any of the properties or code comments.
- Push up your branch and issue a pull request.
Code of Conduct
Please abide by our Code of conduct when participating in this project.
License
MIT License. Copyright (c) 2022.