I would like to check, If I'm getting the lat and lng from a URL, and it that URL, the lat and lng is known as FLOAT.
In my own code, I declare them as string, which is
static final String KEY_LATITUDE = "latitude";
static final String KEY_LONGITUDE = "longitude";
When I pass the lat and lng into my code and display it out as a text view,it will be shown. Now, if I would like to pass the value of lat and lng into google map , do I have to declare them as FLOAT in my code or can I remain as string?