基于函数结果的 Azure 条件数据驱动样式
Azure conditional data driven styling based on function result
我正在考虑从 OpenLayers 迁移到 Azure Maps,需要查看我目前可以在 Azure 上做和需要做的事情的列表。其中之一就是造型,其中
我正在根据几个不同的因素来设计图层样式,其中之一是要素名称是否存在于数组中。还有一些其他要求,但它们都源于相同的基本需求。
我看到我可以在使用样式时为每个多边形定义自定义 属性,但我看不到如何根据自定义函数设置它(即 属性在数组中)。
这是我在 OpenLayers (v3) 中所做的:
this._style = (feature, resolution) => {
if (elsaMap.titlesWithContactInfo.includes(MapHelpers.Titles.getProperty(feature, MapHelpers.Titles.PROPERTY_NAMES.TITLE_NO))) {
// Client has entered contact info, return named style
return clientAddedContactStyle;
}
// No ownership information
return noOwnershipStyle
}
这可以在 Azure Maps 中完成吗?我已经阅读了有关基于条件表达式的样式的文档,但它似乎并没有太大帮助。
或者,我可以将图层的样式写成纯函数吗?
不支持样式的回调函数,因为样式逻辑已移交给 GPU 进行处理。但是,您可以将函数逻辑转换为数据驱动的样式表达式。样式表达式可用于将复杂的函数逻辑重新创建为 GPU 将处理的一组指令。这比使用回调进行样式化要快得多,并将此处理从浏览器的单个 CPU UI 线程卸载到 GPU。这是一个示例表达式,用于检查 属性(标题)是否在值数组内,并相应地设置气泡的颜色(相同的主体适用于多边形)。
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="IE=Edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/css/atlas.min.css?api-version=2" type="text/css" />
<script src="https://atlas.microsoft.com/sdk/js/atlas.min.js?api-version=2"></script>
<script type='text/javascript'>
var map, datasource;
function GetMap() {
//Initialize a map instance.
map = new atlas.Map('myMap', {
zoom: 5,
//Add your Azure Maps subscription key to the map SDK. Get an Azure Maps key at https://azure.com/maps
authOptions: {
authType: 'subscriptionKey',
subscriptionKey: 'tTk1JVEaeNvDkxxnxHm9cYaCvqlOq1u-fXTvyXn2XkA'
}
});
//Wait until the map resources are ready.
map.events.add('ready', function () {
//Create a data source to add your data to.
datasource = new atlas.source.DataSource();
map.sources.add(datasource);
//Array of values to look into.
var titlesWithContactInfo = ['titleA', 'titleB', 'titleC'];
//Add some data that has a "title" property.
datasource.add([
new atlas.data.Feature(new atlas.data.Point([0, 0]), { title: 'titleA' }),
new atlas.data.Feature(new atlas.data.Point([0, 1]), { title: 'titleC' }),
new atlas.data.Feature(new atlas.data.Point([1, 1]), { title: 'titleX' })
]);
//Create a layer that styles shapes based on the title property.
var layer = new atlas.layer.BubbleLayer(datasource, null, {
color: [
'case',
//Get the title property from the feature and see if it is in the list of valid titles.
['in', ['get', 'title'], ['literal', titlesWithContactInfo]],
//Make the color green if the title is in the array.
'green',
//Make the color red if it isn't.
'red'
]
});
map.layers.add(layer);
});
}
</script>
<style>
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body onload="GetMap()">
<div id="myMap" style="position:relative;width:100%;height:100%;"></div>
</body>
</html>
请注意,如果更改 titlesWithContactInfo 数组,则需要更新图层中的选项,因为它只会在设置选项时知道传入的值。基本上把相同的样式信息传入图层的setOptions函数
我正在考虑从 OpenLayers 迁移到 Azure Maps,需要查看我目前可以在 Azure 上做和需要做的事情的列表。其中之一就是造型,其中
我正在根据几个不同的因素来设计图层样式,其中之一是要素名称是否存在于数组中。还有一些其他要求,但它们都源于相同的基本需求。
我看到我可以在使用样式时为每个多边形定义自定义 属性,但我看不到如何根据自定义函数设置它(即 属性在数组中)。
这是我在 OpenLayers (v3) 中所做的:
this._style = (feature, resolution) => {
if (elsaMap.titlesWithContactInfo.includes(MapHelpers.Titles.getProperty(feature, MapHelpers.Titles.PROPERTY_NAMES.TITLE_NO))) {
// Client has entered contact info, return named style
return clientAddedContactStyle;
}
// No ownership information
return noOwnershipStyle
}
这可以在 Azure Maps 中完成吗?我已经阅读了有关基于条件表达式的样式的文档,但它似乎并没有太大帮助。
或者,我可以将图层的样式写成纯函数吗?
不支持样式的回调函数,因为样式逻辑已移交给 GPU 进行处理。但是,您可以将函数逻辑转换为数据驱动的样式表达式。样式表达式可用于将复杂的函数逻辑重新创建为 GPU 将处理的一组指令。这比使用回调进行样式化要快得多,并将此处理从浏览器的单个 CPU UI 线程卸载到 GPU。这是一个示例表达式,用于检查 属性(标题)是否在值数组内,并相应地设置气泡的颜色(相同的主体适用于多边形)。
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="IE=Edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/css/atlas.min.css?api-version=2" type="text/css" />
<script src="https://atlas.microsoft.com/sdk/js/atlas.min.js?api-version=2"></script>
<script type='text/javascript'>
var map, datasource;
function GetMap() {
//Initialize a map instance.
map = new atlas.Map('myMap', {
zoom: 5,
//Add your Azure Maps subscription key to the map SDK. Get an Azure Maps key at https://azure.com/maps
authOptions: {
authType: 'subscriptionKey',
subscriptionKey: 'tTk1JVEaeNvDkxxnxHm9cYaCvqlOq1u-fXTvyXn2XkA'
}
});
//Wait until the map resources are ready.
map.events.add('ready', function () {
//Create a data source to add your data to.
datasource = new atlas.source.DataSource();
map.sources.add(datasource);
//Array of values to look into.
var titlesWithContactInfo = ['titleA', 'titleB', 'titleC'];
//Add some data that has a "title" property.
datasource.add([
new atlas.data.Feature(new atlas.data.Point([0, 0]), { title: 'titleA' }),
new atlas.data.Feature(new atlas.data.Point([0, 1]), { title: 'titleC' }),
new atlas.data.Feature(new atlas.data.Point([1, 1]), { title: 'titleX' })
]);
//Create a layer that styles shapes based on the title property.
var layer = new atlas.layer.BubbleLayer(datasource, null, {
color: [
'case',
//Get the title property from the feature and see if it is in the list of valid titles.
['in', ['get', 'title'], ['literal', titlesWithContactInfo]],
//Make the color green if the title is in the array.
'green',
//Make the color red if it isn't.
'red'
]
});
map.layers.add(layer);
});
}
</script>
<style>
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body onload="GetMap()">
<div id="myMap" style="position:relative;width:100%;height:100%;"></div>
</body>
</html>
请注意,如果更改 titlesWithContactInfo 数组,则需要更新图层中的选项,因为它只会在设置选项时知道传入的值。基本上把相同的样式信息传入图层的setOptions函数