I am currently trying to create a mapping tool for a building in azure maps, to give some 3d styling to it I want to add a polygon extrusion layer and increase the height of the polygons based on which floor you're looking at. However this makes it harder to see the outline of the different rooms. I would like to have something like a "line extrusion layer" or an option to highlight the the edges op the extrude polygon, even being able to remove the top of the extrusion would be welcome. Do you guys have any ideas how I could accomplish this? Is it possible to put a line layer on top of the extrusions? instead of on the map itself?
I have spent a lot of time looking into different options, but haven't found anything close to what i'm looking for. I simply want to have a black line running along the edge of my extrusions
Unfortunately, there isn't a line extrusion layer. There is however a couple of ways to improve your scenario.
Option 1: Polygon extrusion per floor
Use the base and height properties of the polygon extrusion layer to create slices of each floor. This should create a seam/line between each floor, and will also allow you to use events to select and highlight individual floors. To accomplish this you can either create a polygon for each floor and assign them a base/height based on the floor number, or you could create a layer for each floor and reuse the same polygon in the data source. Using the layer method would be more scalable as your app would be working with a lot less data. If your floor heights are constant, things can be a bit easier. If we assume you have a value that indicates the number of floors a building has, you can then use a filter on each layer to determine if a floor should be created for that polygon. This may look something like this:
Below is some sample source code. You can also try this live here: https://rbrundritt.azurewebsites.net/Demos/AzureMaps/BuildingFloors/index.html
I tried setting the color of all floors to the same color and the seams were not very visible. If you want all floors to be the same color, you could add a thin layer between each floor that has a separate color like this:
Here is a modified version of the code above that does this. You can also try it live here: https://rbrundritt.azurewebsites.net/Demos/AzureMaps/BuildingFloors/FloorSeperator.html
Option 2: Integrate Deck.gl
Deck.gl is another WebGL rendering layer that does support rendering polygon extrusions and lines as shown here: https://deck.gl/examples/geojson-layer-polygons. Deck.gl can be used with Azure Maps via the
WebGlLayer
as shown in this sample: https://samples.azuremaps.com/?search=deck&sample=deck-gl-custom-webgl-layer This will give you the lines you are looking for but would introduce a lot of new things outside of the Azure Maps API which would make it harder to keep things consistent. For example, events are handled differently, so you would potentially have two different types of events being used with your map which may make it harder for someone to maintain in the future. I also having a feeling this method would be a lot more complicated to achieve.