I have the following that will return me a camera object.
var milestoneCameraObject = new VideoOS.Platform.ConfigurationItems.Camera(camera.FQID);
It has a GISPoint which is defined as a string.
For example “POINT (-44.44444 33.33333)”
How do I parse this to get the individual Longitude and Latitude from it? Or is there another way to get the Longitude and Latitude for a given camera?
var milestoneCameraObject = new VideoOS.Platform.ConfigurationItems.Camera(camera.FQID);
var milestoneCameraGisLocation = new VideoOS.Platform.ConfigurationItems.GisMapLocation(camera.FQID);
But the PositionX and PositionY information is blank in the milestoneCameraGisLocation object.