google map API zoom range

Available Zoom Levels Zoom level 0 is the most zoomed out zoom level available and each integer step in zoom level halves the X and Y extents of the view and doubles the linear resolution. Google Maps was built on a 256×256 pixel tile system where zoom level 0 was a 256×256 pixel image of … Read more

ReferenceError: google is not defined

Owing to the fact that my website uses https for the connection, I can not use http://maps.google.com/maps/api/js?sensor=false. When I debug the whole page, this link says: Warning : The page index.html ran insecure content. so I made another search on google and came across to this question. so what basically causes a problem is not using https link in the … Read more

Type error: cannot convert the series to

The problem is quite trivial, You’re using a Pandas.DataFrame. Now when you slice it rep_points[‘lat’], you get a Pandas.Series. The gmplot.scatter() is expecting an iterable of floats not a series of floats. Now if you convert your Pandas.Series to a list by using rep_points[‘lat’].tolist() It’ll start working Below is your updated code: Other things that helped to point it out: type(rep_points[‘lat’]) is a Pandas.Series type(rep_points[‘lat’][0]) is a Numpy.Float to iterate over a Pandas.Series you need to use iteritems