Have you got what it takes to create an app in 100 lines or less using the ArcGIS JavaScript API? If shortlisted will be given the opportunity to showcase your app on the developer floor at Esri UK’s Annual Conference. Get creative!
- Maximum of 100 Lines of beautified JavaScript code. (Your CSS and HTML code can be as long as you want).
- Maximum of 100 characters per line.
- Using Esri's ArcGIS API for JavaScript.
- Each project must contain an index.html file and a seperate js file.(see example).
- Data must be publically accessible.
- Applications must be freely distributable via apache 2.0 license.
- Applicants must be 18+ and be living in the UK.
- Able to attend the Esri UK Annual Conference on the 16th May 2017.
- You may only enter this competition if you are a resident of the United Kingdom and are aged 18 years or over. Employees (and employees immediate family and their household members) of ESRI (UK) Limited, ESRI Ireland, ESRI Holdings Group and ESRI Inc. may not apply.
By submitting your application you're agreeing to the terms and conditions. Full list of which can be found here.
To verify the code is 100 lines or less we are using this beautifier. We recommend you use this as you go along to test your code. Using the following settings. Indent with a tab character. Remove all extra new lines. Wrap lines to near 110 character (Although remember only 100 characters per line.) Braces with control statement.
- Starts: 17:00 GMT Tuesday 21th March 2017
- Closes: 23:59 BST Sunday 23rd April, 2017 (No entries will be accepted after this time.)
You will be contacted via email by 28th of April if you've been shortlisted, see note section below.
The winners will be announced at the Esri UK Annual Conference 16th May 2017.
- Fork and then clone this repo.
- Add a sub-folder in submissions with your app in it (see example).
- Make a pull request on the master branch to submit your entry.
This request represents your agreement to the Terms and Conditions.
NOTE:
- Be sure to Pull and Merge from this repo to get the latest before making your pull request! We'll publish the app for you.
- If you don't have a public email on your github account, can you please either email me or leave your email as a comment in the code. Otherwise we cannot contact you!
- Registration, Flights and accommodation to the Esri European Developer Summit in Berlin (24th - 26th October)
- iPad
- £100 Amazon voucher
- Effective use of the ArcGIS API for JavaScript
- UX and UI
- Coding style
- Responsive design
- The concept or idea
Follow the structure of this example. View it live here.
\project\
\project\index.html
\project\js\main.js
\project\css\style.css
\project\images\
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<title>SampleSubmission</title>
<link rel="stylesheet" href="https://js.arcgis.com/4.3/esri/css/main.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://js.arcgis.com/4.3/"></script>
<script src="js/main.js"></script>
</head>
<body>
<div id="viewDiv"></div>
<div id="info">
<span id="name"></span><br>
<span id="category"></span><br>
<span id="wind"></span>
</div>
</body>
</html>
Any questions or queries please feel free to email smcgee@esriuk.com
Good luck!
- Esri UK Annual Conference
- ArcGIS API for JavaScript
- ArcGIS Blog
- @esriukgeodev Esri UK's developer twitter account
- @esriuk Esri UK's main twitter account
Copyright 2017 Esri UK
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.