comparison client/src/fairway/Fairwayprofile.vue @ 1021:957613a71b35

display start/end coordinates next to fairway profile
author Markus Kottlaender <markus@intevation.de>
date Wed, 24 Oct 2018 11:20:30 +0200
parents ca628dce90dd
children bf10a7f990cc
comparison
equal deleted inserted replaced
1020:e89be4af3a9f 1021:957613a71b35
8 <option value="">None</option> 8 <option value="">None</option>
9 <option v-for="survey in additionalSurveys" :key="survey.date_info"> 9 <option v-for="survey in additionalSurveys" :key="survey.date_info">
10 {{survey.date_info}} 10 {{survey.date_info}}
11 </option> 11 </option>
12 </select> 12 </select>
13 <small class="mt-2">
14 <b>Start:</b><br>
15 Lat: {{ startPoint[1] }}<br>
16 Lon: {{ startPoint[0] }}<br>
17 <b>End:</b><br>
18 Lat: {{ endPoint[1] }}<br>
19 Lon: {{ endPoint[0] }}<br>
20 </small>
13 </div> 21 </div>
14 </div> 22 </div>
15 </template> 23 </template>
16 24
17 <style scoped lang="scss"> 25 <style scoped lang="scss">