I have a WEB page that displays a blueprint of a store or warehouse. I am writing this in ASP.NET 4.5.
I would like to be able to position a dot or something on top of teh blueprint image whenever a user picks a location so they can esaily see where it is.
Psuedo code
RedDot.Filename = "/images/reddot.jpg"
Blueprint.Filename = "/images/Store48.jpg"
Aisle = "1A1"
RedDot.X = spLookupCoords(Aisle , "X") 'function to find the X coordinate, I can make this OK
RedDot.Y = spLookupCoords(Aisle , "Y")
So the red dot will show on top of the blueprint image at 405,512
Next time the user may pick B2C so teh dot needs to show at 603, 877. and so on.
My table has random samples:
DougP
I would like to be able to position a dot or something on top of teh blueprint image whenever a user picks a location so they can esaily see where it is.
Psuedo code
RedDot.Filename = "/images/reddot.jpg"
Blueprint.Filename = "/images/Store48.jpg"
Aisle = "1A1"
RedDot.X = spLookupCoords(Aisle , "X") 'function to find the X coordinate, I can make this OK
RedDot.Y = spLookupCoords(Aisle , "Y")
So the red dot will show on top of the blueprint image at 405,512
Next time the user may pick B2C so teh dot needs to show at 603, 877. and so on.
My table has random samples:
Code:
Aisle Xcoord YCoord
1A1 405 512
1A2 405 519
B2C 603 877
etc
DougP