Skip to content
Snippets Groups Projects
Commit d8d475a1 authored by Powers, Peter M.'s avatar Powers, Peter M.
Browse files

changed markerColor style hint to stroke

parent cbcf6b36
No related branches found
No related tags found
1 merge request!446Site file generator updates
......@@ -54,10 +54,15 @@ import gov.usgs.earthquake.nshmp.NamedLocation;
* @author Peter Powers
*/
final class NshmpSiteFiles {
// TODO consider removing this to nshm-model-dev
// keeping the outputs in nshmp-haz
/*
* Developer note: Disable GeoJSON.GSON_DEFAULT serializeNulls() to skip 'id'
* serialization when null.
*/
private static final Path EXPORT_DIR = Paths.get("etc", "nshm");
private static final String EXTENTS_COLOR = "#AA0078";
......@@ -221,7 +226,7 @@ final class NshmpSiteFiles {
if (bounds != null) {
Map<String, Object> boundsProps = Properties.builder()
.put(Style.FILL, EXTENTS_COLOR)
.put(Style.MARKER_COLOR, EXTENTS_COLOR)
.put(Style.STROKE, EXTENTS_COLOR)
.put(Style.TITLE, name + " Map Extents")
.build();
b.add(Feature.polygon(bounds)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment