File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -380,6 +380,7 @@ function load() {
380380 zoomControl : false ,
381381 center : [ 53.467511 , - 2.2338940 ] ,
382382 layers : [ osm ] ,
383+ preferCanvas : true ,
383384 } ) ;
384385
385386 map . addControl ( new L . Control . Fullscreen ( { position : 'bottomleft' } ) ) ;
@@ -564,7 +565,7 @@ function showLaunchSites() {
564565 sondes = sondes . replace ( new RegExp ( "\\b77\\b" ) , "M10 (possible to track)" ) ;
565566 sondes = sondes . replace ( new RegExp ( "\\b82\\b" ) , "LMS6-1680 (possible to track)" ) ;
566567 sondes = sondes . replace ( new RegExp ( "\\b84\\b" ) , "iMet-54 (possible to track)" ) ;
567- var marker = new L . marker ( latlon ) ;
568+ var marker = new L . circleMarker ( latlon , { color : 'black' , radius : 8 } ) ;
568569 var popup = new L . popup ( { autoClose : false , closeOnClick : false } ) . setContent ( "<font style='font-size: 13px'>" + json [ key ] . station_name + "</font><br><br><b>Sondes launched:</b> " + sondes ) ;
569570 marker . bindPopup ( popup ) ;
570571 launches . addLayer ( marker ) ;
You can’t perform that action at this time.
0 commit comments