-
-
Notifications
You must be signed in to change notification settings - Fork 493
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Map viewer - support to add layers from ESRI Rest services (#5931)
* Map viewer - support to add layers from ESRI Rest services * Map viewer - support to add layers from ESRI Rest services - code improvements * Map viewer - support to add layers from ESRI Rest services - rename gnMap.addEsriRestFromScratch method
- Loading branch information
Showing
9 changed files
with
209 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
web-ui/src/main/resources/catalog/components/viewer/wmsimport/partials/esrilayer.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<li class="leaf"> | ||
<div class="flex-col"> | ||
<div class="flex-row width-100 flex-align-stretch"> | ||
<div class="flex-col flex-grow"> | ||
<a href="" | ||
class="truncate" | ||
data-ng-click="addLayer()" | ||
title="{{member.name}}"> | ||
<i class='fa fa-fw' | ||
data-ng-class='"fa-map-o"'></i> | ||
{{member.name}} | ||
</a> | ||
</div> | ||
<div class="gn-layer-toolbar btn-group btn-group-xs"> | ||
<a href="" | ||
class="btn btn-link btn-xs" | ||
data-ng-click="addLayer()" | ||
class="btn btn-default btn-xs" | ||
title="{{'addToMap' | translate}}"> | ||
<i class="fa fa-fw fa-plus"></i> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters