A municipality viewer that allows users to input an address and receive information based on that location
This application is a municipality viewer that allows users to input an address and receive information based on that location. More technically, the application points to an ArcGIS online Web Map that contains a series of layers bounded by a geographic extent - and then MyStreet returns relevant data based on the searched coordinates within that extent.
Additionally, this app can be used to demonstrate a set of “hub-ready” requirements that allow an application to become a part of the hub. The flagship requirements are Shared Themes, Data Citation, Indicator Awareness, and Accessibility. More information can be found here.
Currently MyStreet is in development and should be thought of as a beta or preview.
If you have any questions, please reach out to mshofner@esri.com, or make a PR/Issue in this repo!
Create a Web Map and associated feature layers.
Create a Web App which points to the :id from the Web Map above.
The hash should look something like
{
"source": "My City",
"folderId": null,
"values": {
"webmap": "f155264b2b0942daa2c30945b1023675",
"themeId": "283b7cf014394d7fab7b3fd5b4bd6aeb"
}
}
Point the MyStreet application to the :id of the Web App
e.g. for item “2f4c72dc471b4baab362c0437273bd51” put that on the tail end of the url - either http://mystreet.surge.sh/2f4c72dc471b4baab362c0437273bd51 or http://localhost:4200/2f4c72dc471b4baab362c0437273bd51
You will need the following things properly installed on your computer.
git clone <repository-url>
this repositorycd MyStreet
npm install
bower install
ember serve
Make use of the many generators for code, try ember help generate
for more details
ember test
ember test --server
ember build
(development)ember build --environment production
(production)Specify what it takes to deploy your app.
Licensed under the Apache License, Version 2.0 (the “License”);
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an “AS IS” BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
A copy of the license is available in the repository’s license.txt file.
If you have any questions, please reach out to mshofner@esri.com, or make a PR/Issue in this repo!