You can use JSON Select , which has several functions to extract different types of data from JSON. For your requirements, you can do something like this:
select dbo.JsonDecimal(my_column, 'latitude') as latitude, dbo.JsonDecimal(my_column, 'longitude') as longitude from my_table
DISCLOSURE: I am the author of JSON Select, and so you are interested in using it :)
source share