Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
209 lines (186 sloc)
10.1 KB
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Popup templates - Azure Maps Web SDK Samples</title> | |
<meta charset="utf-8" /> | |
<link rel="shortcut icon" href="/favicon.ico"/> | |
<meta http-equiv="x-ua-compatible" content="IE=Edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> | |
<meta name="description" content="This sample shows how to use a various popup templates to generate formatted content from porperties of features." /> | |
<meta name="keywords" content="Microsoft maps, map, gis, API, SDK, pins, symbols, pushpins, markers, infobox, infowindow, hover, popup templates" /> | |
<meta name="author" content="Microsoft Azure Maps" /> | |
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. --> | |
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" /> | |
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script> | |
<script type='text/javascript'> | |
var map, datasource, popup; | |
function GetMap() { | |
//Point the Azure Maps domain to the US Azure Gov Cloud domain. | |
atlas.setDomain('atlas.azure.us'); | |
//Initialize a map instance. | |
map = new atlas.Map('myMap', { | |
zoom: 2, | |
view: 'Auto', | |
//Add authentication details for connecting to Azure Maps. | |
authOptions: { | |
//Use Azure Active Directory authentication. | |
authType: 'anonymous', | |
clientId: 'c9f2f391-13f1-407b-a4a5-f0a241bacfbf', //Your Azure Active Directory client id for accessing your Azure Maps account. | |
getToken: function (resolve, reject, map) { | |
//URL to your authentication service that retrieves an Azure Active Directory Token. | |
var tokenServiceUrl = 'https://azuremapscodesamples.azurewebsites.us/Common/TokenService.ashx'; | |
fetch(tokenServiceUrl).then(r => r.text()).then(token => resolve(token)); | |
} | |
//Alternatively, use an Azure Maps key. Get an Azure Maps key at https://azure.com/maps. NOTE: The primary key should be used as the key. | |
//authType: 'subscriptionKey', | |
//subscriptionKey: '<Your Azure Maps Key>' | |
} | |
}); | |
//Wait until the map resources are ready. | |
map.events.add('ready', function () { | |
//Create a data source and add it to the map. | |
datasource = new atlas.source.DataSource(); | |
map.sources.add(datasource); | |
//Add sample data. | |
datasource.add([ | |
new atlas.data.Feature(new atlas.data.Point([-20, 20]), { | |
title: 'No template - title/description', | |
description: 'This point doesn\'t have a template defined, fallback to title and description properties.' | |
}), | |
new atlas.data.Feature(new atlas.data.Point([20, 20]), { | |
title: 'No template - property table', | |
message: 'This point doesn\'t have a template defined, fallback to title and table of properties.', | |
randomValue: 10, | |
url: 'https://aka.ms/AzureMapsSamples', | |
imageLink: 'https://azuremapscodesamples.azurewebsites.net/common/images/Pike_Market.jpg', | |
email: 'info@microsoft.com' | |
}), | |
new atlas.data.Feature(new atlas.data.Point([40, 0]), { | |
title: 'No template - hyperlink detection disabled', | |
message: 'This point doesn\'t have a template defined, fallback to title and table of properties.', | |
randomValue: 10, | |
url: 'https://aka.ms/AzureMapsSamples', | |
email: 'info@microsoft.com', | |
popupTemplate: { | |
detectHyperlinks: false | |
} | |
}), | |
new atlas.data.Feature(new atlas.data.Point([-20, -20]), { | |
title: 'Template 1 - String template', | |
value1: 1.2345678, | |
value2: { | |
subValue: 'Pizza' | |
}, | |
arrayValue: [3, 4, 5, 6], | |
popupTemplate: { | |
content: 'This template uses a string template with placeholders.<br/><br/> - Value 1 = {value1}<br/> - Value 2 = {value2/subValue}<br/> - Array value [2] = {arrayValue/2}', | |
numberFormat: { | |
maximumFractionDigits: 2 | |
} | |
} | |
}), | |
new atlas.data.Feature(new atlas.data.Point([20, -20]), { | |
title: 'Template 2 - PropertyInfo', | |
createDate: new Date(), | |
dateNumber: 1569880860542, | |
url: 'https://aka.ms/AzureMapsSamples', | |
email: 'info@microsoft.com', | |
popupTemplate: { | |
content: [ | |
{ | |
propertyPath: 'createDate', | |
label: 'Created Date' | |
}, | |
{ | |
propertyPath: 'dateNumber', | |
label: 'Formatted date from number', | |
dateFormat: { | |
weekday: 'long', | |
year: 'numeric', | |
month: 'long', | |
day: 'numeric', | |
timeZone: 'UTC', | |
timeZoneName: 'short' | |
} | |
}, | |
{ | |
propertyPath: 'url', | |
label: 'Code samples', | |
hideLabel: true, | |
hyperlinkFormat: { | |
lable: 'Go to code samples!', | |
target: '_blank' | |
} | |
}, | |
{ | |
propertyPath: 'email', | |
label: 'Email us', | |
hideLabel: true, | |
hyperlinkFormat: { | |
target: '_blank', | |
scheme: 'mailto:' | |
} | |
} | |
] | |
} | |
}), | |
new atlas.data.Feature(new atlas.data.Point([0, 0]), { | |
title: 'Template 3 - Multiple content template', | |
value1: 1.2345678, | |
value2: { | |
subValue: 'Pizza' | |
}, | |
arrayValue: [3, 4, 5, 6], | |
imageLink: 'https://azuremapscodesamples.azurewebsites.net/common/images/Pike_Market.jpg', | |
popupTemplate: { | |
content: [ | |
'This template has two pieces of content; a string template with placeholders and an array of property info which renders a full width image.<br/><br/> - Value 1 = {value1}<br/> - Value 2 = {value2/subValue}<br/> - Array value [2] = {arrayValue/2}', | |
[ | |
{ | |
propertyPath: 'imageLink', | |
label: 'Image', | |
hideImageLabel: true, | |
hyperlinkFormat: { | |
isImage: true | |
} | |
} | |
] | |
], | |
numberFormat: { | |
maximumFractionDigits: 2 | |
} | |
} | |
}), | |
]); | |
//Create a layer that defines how to render the points on the map. | |
var layer = new atlas.layer.BubbleLayer(datasource); | |
map.layers.add(layer); | |
//Create a popup but leave it closed so we can update it and display it later. | |
popup = new atlas.Popup(); | |
//Add a click event to the layer. | |
map.events.add('click', layer, showPopup); | |
}); | |
} | |
function showPopup(e) { | |
if (e.shapes && e.shapes.length > 0) { | |
var properties = e.shapes[0].getProperties(); | |
popup.setOptions({ | |
//Update the content of the popup. | |
content: atlas.PopupTemplate.applyTemplate(properties, properties.popupTemplate), | |
//Update the position of the popup with the pins coordinate. | |
position: e.shapes[0].getCoordinates() | |
}); | |
//Open the popup. | |
popup.open(map); | |
} | |
} | |
</script> | |
</head> | |
<body onload="GetMap()"> | |
<div id="myMap" style="position:relative;width:100%;min-width:290px;height:600px;"></div> | |
<fieldset style="width:calc(100% - 30px);min-width:290px;margin-top:10px;"> | |
<legend><h1 style="font-size:16px">Popup templates</h1></legend> | |
This sample shows how to use a various popup templates to generate formatted content from porperties of features. Popup templates make it easy to create data driven layouts for popups. | |
</fieldset> | |
</body> | |
</html> |