task_22027 #4
|
@ -29,6 +29,7 @@ import ol.MapOptions;
|
||||||
import ol.OLFactory;
|
import ol.OLFactory;
|
||||||
import ol.View;
|
import ol.View;
|
||||||
import ol.ViewOptions;
|
import ol.ViewOptions;
|
||||||
|
import ol.color.Color;
|
||||||
import ol.control.Attribution;
|
import ol.control.Attribution;
|
||||||
import ol.event.EventListener;
|
import ol.event.EventListener;
|
||||||
import ol.geom.Point;
|
import ol.geom.Point;
|
||||||
|
@ -49,8 +50,12 @@ import ol.source.Osm;
|
||||||
import ol.source.Source;
|
import ol.source.Source;
|
||||||
import ol.source.Xyz;
|
import ol.source.Xyz;
|
||||||
import ol.source.XyzOptions;
|
import ol.source.XyzOptions;
|
||||||
|
import ol.style.Fill;
|
||||||
|
import ol.style.FillOptions;
|
||||||
import ol.style.Icon;
|
import ol.style.Icon;
|
||||||
import ol.style.IconOptions;
|
import ol.style.IconOptions;
|
||||||
|
import ol.style.Stroke;
|
||||||
|
import ol.style.StrokeOptions;
|
||||||
import ol.style.Style;
|
import ol.style.Style;
|
||||||
import ol.style.Text;
|
import ol.style.Text;
|
||||||
import ol.style.TextOptions;
|
import ol.style.TextOptions;
|
||||||
|
@ -405,14 +410,15 @@ public class LightOpenLayerMap {
|
||||||
if (showCoordinateText) {
|
if (showCoordinateText) {
|
||||||
TextOptions textOptions = new TextOptions();
|
TextOptions textOptions = new TextOptions();
|
||||||
textOptions.setOffsetY(-25);
|
textOptions.setOffsetY(-25);
|
||||||
// StrokeOptions strokeOptions = new StrokeOptions();
|
StrokeOptions strokeOptions = new StrokeOptions();
|
||||||
// strokeOptions.setColor(new Color(0, 0, 255, 0.0));
|
strokeOptions.setColor(new Color(255, 255, 255, 1.0));
|
||||||
// strokeOptions.setWidth(4);
|
strokeOptions.setWidth(4);
|
||||||
// Stroke stroke = new Stroke(strokeOptions);
|
Stroke stroke = new Stroke(strokeOptions);
|
||||||
// textOptions.setStroke(stroke);
|
stroke.setWidth(5);
|
||||||
// FillOptions fillOptions = new FillOptions();
|
textOptions.setStroke(stroke);
|
||||||
// fillOptions.setColor(new Color(0, 0, 0, 0.0));
|
FillOptions fillOptions = new FillOptions();
|
||||||
// textOptions.setFill(new Fill(fillOptions));
|
fillOptions.setColor(new Color(0, 0, 255, 1.0));
|
||||||
|
textOptions.setFill(new Fill(fillOptions));
|
||||||
|
|
||||||
Coordinate transfCoord = MapUtils.transformCoordiante(coordinate, MAP_PROJECTION.EPSG_3857.getName(),
|
Coordinate transfCoord = MapUtils.transformCoordiante(coordinate, MAP_PROJECTION.EPSG_3857.getName(),
|
||||||
MAP_PROJECTION.EPSG_4326.getName());
|
MAP_PROJECTION.EPSG_4326.getName());
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 500 B |
|
@ -415,8 +415,9 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.baseLayersMapLink .btn-link {
|
.baseLayersMapLink .btn-link {
|
||||||
border: 1px solid #eee;
|
/*border: 1px solid #eee;*/
|
||||||
background-color: #fcfcfc;
|
border: 1px solid #005580;
|
||||||
|
/*background-color: #fcfcfc;*/
|
||||||
margin: 1px;
|
margin: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue