You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
915 B

  1. <ion-view view-title="Define a place">
  2. <ion-content>
  3. <label class="item item-input">
  4. <input type="text" ng-model="place.location.direction" placeholder="Direction">
  5. </label>
  6. <div ng-click="getGeo()" class="button button-small c_indigo400 item-note"
  7. ng-show="place.location.direction">
  8. Get geolocation
  9. </div>
  10. <leaflet ng-show="markers[0]"
  11. width="100%" height="40%" markers="markers" center="center"
  12. tiles="tiles" id="map-simple-map"></leaflet>
  13. <label class="item item-input">
  14. <span class="input-label">Radius</span>
  15. <input type="number">
  16. </label>
  17. <div class="item">
  18. <div ng-click="postEvent()" class="button c_indigo400 item-note" ng-show="place.location.geo.lat">
  19. Post new event!
  20. </div>
  21. </div>
  22. </ion-content>
  23. </ion-view>