The following set of commands should plot markers on a world map:
import datalab.bigquery as bq
%%sql --module geo_data
SELECT
userLat,
userLon
FROM
[project_id:datasource.table]
%%chart geo --data geo_data
The query returns ~180k rows and when run on a local version of datalab on my macbook with 8GB RAM it never manages to produce the chart. I've only since discovered that the high number of records appears to be the problem, when I add LIMIT 100 to the end of the query the chart is produced rapidly.
What prevented the ~180k records from being plotted?