Skip to content

Commit 6af2272

Browse files
committed
#65 simple implementation to allow using an authorization token with WmsLayer
* include leaflet-wms-header plugin (https://github.com/ticinum-aerospace/leaflet-wms-header) to the client bundle * updated index.js from https://cdn.jsdelivr.net/npm/[email protected]/index.min.js * new API for WmsLayer allowing creation of the layer with an authorization token
1 parent ca1778e commit 6af2272

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

src/main/java/org/peimari/gleaflet/client/WmsLayer.java

+20
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,25 @@ public static native WmsLayer create(String url, WmsLayerOptions options)
99
/*-{
1010
return new $wnd.L.TileLayer.WMS(url, options);
1111
}-*/;
12+
13+
public static native WmsLayer create(String url, String authorization, String layers, WmsLayerOptions options, Map map)
14+
/*-{
15+
try {
16+
return $wnd.L.TileLayer.wmsHeader(url,
17+
{
18+
layers: layers,
19+
format: 'image/png',
20+
transparent: true
21+
},
22+
[
23+
{ header: 'Authorization', value: 'Bearer ' + authorization },
24+
{ header: 'Content-Type', value: 'text/plain'}
25+
],
26+
null
27+
).addTo(map);
28+
} catch (err) {
29+
console.error("Error while creating the wms layer with authorization: " + err.message);
30+
}
31+
}-*/;
1232

1333
}

src/main/java/org/peimari/gleaflet/client/resources/LeafletClientBundle.java

+3
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,8 @@ public interface LeafletClientBundle extends ClientBundle {
2020

2121
@Source("images/layers-2x.png")
2222
ImageResource layers2x();
23+
24+
@Source("leaflet-wms-header/index.js")
25+
TextResource pluginScript();
2326

2427
}

src/main/java/org/peimari/gleaflet/client/resources/LeafletResourceInjector.java

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public static void ensureInjected() {
2121
protected void injectResources() {
2222
bundle.css().ensureInjected();
2323
injectScript(bundle.baseScript().getText());
24+
injectScript(bundle.pluginScript().getText());
2425
setDefaultMarkerIconPath(getDefaultMarkerDirectory());
2526
}
2627

0 commit comments

Comments
 (0)