Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I want to build Indoor Map for My building. we have different counters in the building. How to Draw markers using base map, second how i can calculate the distance between two counters and how to show the direction from starting point. I am expert in asp.net MVC.
Any one can help me please.

Thanks,

What I have tried:

How to Draw Inside building Map?
Posted
Updated 17-Aug-18 23:16pm

1 solution

For the drawing part I am not sure about ASP.Net but WPF offers a wealth of 2D and 3D drawing tools via different Canvas objects.

Maybe there is something similar in ASP.Net (if you re not interested in producing a desktop/UWP app): ASP.NET and HTML 5 Canvas - Draw Images and Save in ASP.NET Image Object[^]

Your second question:

second how i can calculate the distance between two counters and how to show the direction from starting point.


is more difficult to answer and almost impossible to determine if you do not show your data model. You obviously have to ensure first that you store and retrieve the data about your building in such a structure (eg. relational database) that you can resolve these questions - otherwise, building a UI for a non-existing data store seems rather useless :-(

So, I'd probably look at the existing data, re-factor it such that questions like shortest distance etc can be answered... then sit down and develope a console app or unit tests to ensure these questions can be answered, and only then, when I am confident about the data model I'd go ahead and look into the UI side of things...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900