I want to store the values of latitude and longitude fetched from Google Maps GeoCoding API in a MySQL database. The values are in float format.
12.92
Alter your table so it's a double precision float instead of a single precision float:
alter table properties modify latitude double, modify longitude double;