[Style simple] - Bug estilos por defecto

Test en development

by SIGC GUADALTEL

HTML

<script src="https://mapea4-sigc.juntadeandalucia.es/js/mapea.ol.min.js"></script>
<script src="https://mapea4-sigc.juntadeandalucia.es/js/configuration.js"></script>
<link rel="stylesheet" href="https://mapea4-sigc.juntadeandalucia.es/assets/css/mapea.ol.min.css">
<div id="map">
  <label>Fill color</label>
  <input type='color' oninput=setFillColor(this)>

  <label>Stroke color</label>
  <input type='color' oninput=setStrokeColor(this)>

</div>

CSS

html,
 body {
   margin: 0;
   padding: 0;
   height: 100%;
   overflow: hidden;
 }

JavaScript

var map = M.map({
      'container': 'map',
      "controls": ["layerswitcher"]
    });

    let points = new M.layer.GeoJSON({
      name: "points",
      source: {
        "type": "FeatureCollection",
        "features": [{
          "type": "Feature",
          "properties": {
            "alumnos": 400,
            "colegios": 2
          },
          "geometry": {
            "type": "Point",
            "coordinates": [-6.383056640625,
              37.3002752813443
            ]
          }
        }, {
          "type": "Feature",
          "properties": {
            "alumnos": 340,
            "colegios": 5
          },
          "geometry": {
            "type": "Point",
            "coordinates": [-6.119384765624999,
              37.60552821745789
            ]
          }
        }, {
          "type": "Feature",
          "properties": {
            "alumnos": 675,
            "colegios": 3
          },
          "geometry": {
            "type": "Point",
            "coordinates": [-5.679931640625,
              37.43997405227057
            ]
          }
        }, {
          "type": "Feature",
          "properties": {
            "alumnos": 440,
            "colegios": 2
          },
          "geometry": {
            "type": "Point",
            "coordinates": [-6.0205078125,
              37.17782559332976
            ]
          }
        }, {
          "type": "Feature",
          "properties": {
            "alumnos": 520,
            "colegios": 6
          },
          "geometry": {
            "type": "Point",
            "coordinates": [-5.47119140625,
              37.84015683604136
            ]
          }
        }, {
          "type": "Feature",
          "properties": {},
          "geometry": {
            "type": "Point",
            "coordinates": [-5.2294921875,
              37.483576550426996
            ]
          }
        }, {
          "type": "Feature",
          "properties": {
            "alumnos": 350,
         ...