-
-
Notifications
You must be signed in to change notification settings - Fork 736
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Remove unnecessary `type="text/css"` - not needed for HTML5 and not recommended. - Update `@maplibre/maplibre-gl-geocoder` to latest version on the demo (seems to work fine) - Accessibility fix for filter-within-layers example with radio matching the labels.
- Loading branch information
Showing
4 changed files
with
7 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,11 +14,10 @@ | |
</head> | ||
<body> | ||
<!-- Load the `maplibre-gl-geocoder` plugin. --> | ||
<script src="https://unpkg.com/@maplibre/maplibre-gl-geocoder@1.2.0/dist/maplibre-gl-geocoder.min.js"></script> | ||
<script src="https://unpkg.com/@maplibre/maplibre-gl-geocoder@1.5.0/dist/maplibre-gl-geocoder.min.js"></script> | ||
<link | ||
rel="stylesheet" | ||
href="https://unpkg.com/@maplibre/[email protected]/dist/maplibre-gl-geocoder.css" | ||
type="text/css" | ||
href="https://unpkg.com/@maplibre/[email protected]/dist/maplibre-gl-geocoder.css" | ||
/> | ||
<div id="map"></div> | ||
<script> | ||
|
@@ -110,4 +109,4 @@ | |
); | ||
</script> | ||
</body> | ||
</html> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,6 @@ | |
<link | ||
rel="stylesheet" | ||
href="https://www.unpkg.com/@mapbox/[email protected]/dist/mapbox-gl-draw.css" | ||
type="text/css" | ||
/> | ||
<div id="map"></div> | ||
<div class="calculation-box"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
</style> | ||
</head> | ||
<body> | ||
<style type="text/css"> | ||
<style> | ||
#info { | ||
display: block; | ||
position: absolute; | ||
|