Skip to content
Snippets Groups Projects
Select Git revision
  • 77cff122f749951f795ba43bc086d6ce2a05eb4d
  • master default
  • next_version
  • laurent-change.log
  • Documentation_homogeneisation
  • HEAD
  • 2021.02.02
  • 2021.02.01
  • 2021.02.00
  • 2021.01.00
  • 2020.02.02
  • 2020.02.01
  • 2020.02.00
  • 2020.01.05
  • 2020.01.04
  • 2020.01.03
  • 2020.01.02
  • 2020.01.01
  • 2020.01.00
  • 2019.03.00
  • 2019.02.07
  • 2019.02.06
  • 2019.02.05
  • 2019.02.04
  • 2019.02.03
  • 2019.02.02
26 results

README.md

Blame
  • osmsuggestions.html 2.20 KiB
    <!-- Liste des couches utilisables -->
    
    <h3>{{ 'VMAP_MAPMODAL_OSM_TITLE' | translate }}: </h3>
    
    <hr>
    
    <div>
        <div class="row">
            <div class="col-xs-3">
                <b>{{ 'VMAP_NAME' | translate }}:</b>
            </div>
            <div class="col-xs-7">
                <b>{{ 'VMAP_URL' | translate }}:</b>
            </div>
        </div>
        <div class="row">
            <div class="col-xs-3">
                <input type="text" ng-model="ctrl.sLayerName" class="form-control" placeholder="{{ 'VMAP_SERVICE_NAME' | translate }}" aria-describedby="sizing-addon1">
            </div>
            <div class="col-xs-7">
                <input type="text" ng-model="ctrl.sLayerUrl" class="form-control" placeholder="{{ 'VMAP_SERVICE_URL' | translate }}" aria-describedby="sizing-addon1">
            </div>
            <div class="col-xs-2">
                <button type="button" class="btn btn-success right" ng-click="ctrl.addLayer()">{{ 'VMAP_ADD' | translate }}</button>
            </div>
        </div>
    </div>
    
    <br>
    <hr>
    
    <div ng-repeat="node in ctrl.catalog.services.osm">
        <div class="row">
            <div class="col-xs-3" ng-if="(node.thumbnail | getType) == 'string'">
                <img src="{{node.thumbnail}}"
                     class="img-responsive pointer opacity-hover"
                     ng-click="ctrl.addLayer(node)">
            </div>
            <div class="col-xs-9">
                <b>{{node.name}}</b>
                <p>
                    <i>
                        {{node.description}}
                    </i>
                </p>
            </div>
        </div>
        <div class="row" style="margin-bottom: -15px">
            <div class="col-xs-3" ng-if="(node.thumbnail | getType) == 'string'"></div>
            <div class="auto-overflow" ng-class="{ 'col-xs-7': (node.thumbnail | getType) == 'string', 'col-xs-10': (node.thumbnail | getType) != 'string' }">
                <div>
                    <b>url</b>: <i>{{node.url}}</i>
                </div>
            </div>
            <div class="col-xs-2">
                <button type="button" class="btn btn-primary right" ng-click="ctrl.addLayer(node)">{{ 'VMAP_ADD' | translate }}</button>
            </div>
        </div>
        <hr>
    </div>
    <button id="btn-reload-osm" style="display: none" ng-click="ctrl.reload()">Reload map</button>