HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<script type="module" src="https://js.arcgis.com/calcite-components/1.0.7/calcite.esm.js"></script>
<link rel="stylesheet" type="text/css" href="https://js.arcgis.com/calcite-components/1.0.7/calcite.css" />
<link rel="stylesheet" href="https://js.arcgis.com/4.31/esri/themes/light/main.css" />
<div id="viewDiv"></div>
<div id="componentWrapper">
<calcite-radio-button-group name="Options" layout="vertical">
<calcite-label layout="inline">
<calcite-radio-button value="webMercator" checked="true"></calcite-radio-button>
Web Mercator
</calcite-label>
<calcite-label layout="inline">
<calcite-radio-button value="wgs84" shrubs></calcite-radio-button>
WGS84
</calcite-label>
</calcite-radio-button-group>
</div>
html,
body,
#viewDiv {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
}
#componentWrapper {
padding: 10px 10px 0;
background-color: white;
}
.esri-view-root .esri-ui .esri-attribution {
left: auto;
}
import MapView from "https://js.arcgis.com/4.31/@arcgis/core/views/MapView.js";
import Basemap from "https://js.arcgis.com/4.31/@arcgis/core/Basemap.js";
import esriConfig from "https://js.arcgis.com/4.31/@arcgis/core/config.js";
import BasemapGallery from "https://js.arcgis.com/4.31/@arcgis/core/widgets/BasemapGallery.js";
import Expand from "https://js.arcgis.com/4.31/@arcgis/core/widgets/Expand.js";
// import SpatialReference from "https://js.arcgis.com/4.26/@arcgis/core/geometry/SpatialReference.js";
import SpatialReference from "https://js.arcgis.com/4.31/@arcgis/core/geometry/SpatialReference.js";
import Portal from "https://js.arcgis.com/4.31/@arcgis/core/portal/Portal.js";
import PortalItem from "https://js.arcgis.com/4.31/@arcgis/core/portal/PortalItem.js";
import PortalGroup from "https://js.arcgis.com/4.31/@arcgis/core/portal/PortalGroup.js";
import PortalQueryParams from "https://js.arcgis.com/4.31/@arcgis/core/portal/PortalQueryParams.js";
import * as b from "https://js.arcgis.com/4.31/@arcgis/core/Basemap.js";
esriConfig.apiKey =
"AAPKd48c17fd604143f8895d3ed7c29fc670j-DR5bdRcOjWhwc-DCJKc41knqlRUm-WPyucggCPorG53QswuIpPAEvo65fZ5pps";
const getWGS84Equivalent = (title) => {
console.log(
"getWGS84Equivalent",
title,
basemaps.map((x) => [x.portalItem.title, x.portalItem.tags])
);
const found = basemaps.find(
(x) =>
x.portalItem?.title
?.split(" (WGS84)")
.join("")
.split(" - WGS84")
.join("") == title
);
console.log("found", found);
return found;
};
const getWebMercatorEquivalent = (title) => {
console.log("getWebMercatorEquivalent", title, b.e);
const found = Object.entries(b.e).find(
([k, v]) =>
v.title == title.split(" (WGS84)").join("").split(" - WGS84").join("")
);
if (found) {
const [foundKey, foundValue] = found;
console.log("found", foundKey);
const foundBasemap = Basemap.fromId(foundKey);
return foundBasemap;
} else {
return false;
}
};
const swapWGS84WebMercator = (basemap) => {
let retBasemap;
console.log("swap", basemap);
let spatialReference = basemap.spatialReference;
if (!spatialReference || !spatialReference.wkid) {
// get the spatial reference elsewhere
if (basemap.referenceLayers && basemap.baseLayers.length > 0) {
spatialReference = basemap.baseLayers.at(0).spatialReference;
}
}
console.log("spatialReference.wkid", spatialReference.wkid);
if (spatialReference.wkid === 4326) {
// switch to web mercator!
console.log("switch to web mercator!", basemap);
retBasemap = getWebMercatorEquivalent(basemap.title);
} else {
// switch to WGS84!
console.log("switch to wgs84!", basemap);
retBasemap = getWGS84Equivalent(basemap.title);
}
console.log("swapping to", retBasemap);
return retBasemap;
};
const getPortalItems = async () => {
const g = new PortalGroup({
id: "4c790318395940c18a16e8acd721de25",
portal: new Portal()
});
const portalQueryResult = await g.queryItems(
new PortalQueryParams({
num: 100
})
);
const results = portalQueryResult.results;
// only work on vector tiles for now
const webMapResults = results.filter((x) => x.type === "Web Map");
// const ids = webMapResults.map((x) => x.id);
return webMapResults;
};
const loadAll = async (basemps) => {
const promises = basemaps.map((x) => x.loadAll());
return Promise.all(promises);
};
const basemapItemItems = await getPortalItems();
const basemapItemIds = basemapItemItems.map((x) => x.id);
const basemaps = basemapItemIds.map((x) => {
return new Basemap({
portalItem: {
id: x
}
});
});
let webMercatorBasemapSource;
await loadAll(basemaps);
const viewOptions = {
container: "viewDiv",
map: {
basemap: "streets-vector"
},
center: [-98.35, 39.5],
zoom: 2
};
const view = new MapView(viewOptions);
view.when(() => {
view.ui.add(componentWrapper, "top-right");
let basemapGallery = new BasemapGallery({
view: view
// source: basemaps,
// container: "basemapGalleryWrapper"
});
// Place the Basemap Gallery widget within the Expand widget.
const expand = new Expand({
view: view,
content: basemapGallery,
expandTooltip: "Change Basemap"
});
view.ui.add(expand, "top-right");
// When a basemap is selected, hide the expand widge
// ("Auto-close" the menu)
basemapGallery.watch("activeBasemap", function () {
expand.expanded = false;
});
componentWrapper.addEventListener("calciteRadioButtonChange", (evt) => {
if (evt.target.value === "wgs84") {
webMercatorBasemapSource = basemapGallery.source;
basemapGallery.source = basemaps;
view.spatialReference = new SpatialReference({
wkid: 4326
});
} else {
// web mercator
basemapGallery.source = webMercatorBasemapSource;
view.spatialReference = new SpatialReference({
wkid: 102100
});
}
const newB = swapWGS84WebMercator(view.map.basemap);
if (newB) {
view.map.basemap = newB;
}
});
});
Also see: Tab Triggers