Skip to content

Instantly share code, notes, and snippets.

@satyadeepk
Last active August 29, 2015 14:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save satyadeepk/77bbb406456d91e7132f to your computer and use it in GitHub Desktop.
Save satyadeepk/77bbb406456d91e7132f to your computer and use it in GitHub Desktop.
Parse.com GeoPoint to Google map in Data browser
// ==UserScript==
// @name Parse google map
// @namespace http://addodoc.com
// @version 0.1
// @description Opens a Parse GeoPoint from the Data browser into a Google map on click
// @include https://parse.com/apps/rocket*collections
// @include https://www.parse.com/apps/rocket*collections
// @copyright 2012+, You
// ==/UserScript==
setTimeout(function(){
console.log('Google map');
$("div.slick-cell").click(function(){
var text = $(this).first().text();
//console.log(text) ;
var array = text.split(", ");
if(array.length == 2 && !isNaN(parseFloat(array[0])) && !isNaN(parseFloat(array[1]))){
window.open('https://www.google.com/maps/place//@' + array[0] + ',' + array[1] + ',16z/');
}
});
}, 5000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment