got the example working a lot better now.
This commit is contained in:
parent
7f8b88abf4
commit
fd43fd59d7
|
@ -8,8 +8,12 @@
|
||||||
;;
|
;;
|
||||||
|
|
||||||
(require (planet dyoo/whalesong/js)
|
(require (planet dyoo/whalesong/js)
|
||||||
(planet dyoo/whalesong/js/world)
|
(planet dyoo/whalesong/js/world))
|
||||||
(planet dyoo/whalesong/web-world))
|
|
||||||
|
(provide initialize-google-maps-api!
|
||||||
|
make-dom-and-map
|
||||||
|
make-on-map-click)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;; initialize-google-maps-api!: string boolean -> void
|
;; initialize-google-maps-api!: string boolean -> void
|
||||||
|
@ -56,10 +60,9 @@ function(success, fail, lat, lng) {
|
||||||
EOF
|
EOF
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|
||||||
;; We can listen to certain events, like click.
|
;; We can listen to certain events, like click.
|
||||||
;; https://developers.google.com/maps/documentation/javascript/events
|
;; https://developers.google.com/maps/documentation/javascript/events
|
||||||
(define (make-on-map-click a-gmap)
|
(define (raw-make-on-map-click a-gmap)
|
||||||
;; setup will add a listener associated to the given map.
|
;; setup will add a listener associated to the given map.
|
||||||
(define raw-setup
|
(define raw-setup
|
||||||
(js-function->procedure #<<EOF
|
(js-function->procedure #<<EOF
|
||||||
|
@ -82,7 +85,6 @@ function(gmap, mapsListener) {
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
))
|
))
|
||||||
|
|
||||||
(define (setup callback)
|
(define (setup callback)
|
||||||
(raw-setup a-gmap callback))
|
(raw-setup a-gmap callback))
|
||||||
|
|
||||||
|
@ -102,35 +104,24 @@ EOF
|
||||||
(raise-type-error 'initialize-google-maps-api! "boolean" 1 sensor))
|
(raise-type-error 'initialize-google-maps-api! "boolean" 1 sensor))
|
||||||
(raw-initialize-google-maps-api! key sensor))
|
(raw-initialize-google-maps-api! key sensor))
|
||||||
|
|
||||||
|
|
||||||
|
;; make-dom-and-map: number number -> (values dom-node gmap-object)
|
||||||
|
;; Given a latitude and longitude, creates a dom node that presents a
|
||||||
|
;; Google Map, along with the gmap-object that carries its map state.
|
||||||
|
;; TODO: We may want to provide a higher-level abstraction that
|
||||||
|
;; encapsulates the two into a structured value.
|
||||||
|
(define (make-dom-and-map lat lng)
|
||||||
|
(unless (real? lat)
|
||||||
|
(raise-type-error 'make-dom-and-map "real" 0 lat))
|
||||||
|
(unless (real? lng)
|
||||||
|
(raise-type-error 'make-dom-and-map "real" 1 lng))
|
||||||
|
(raw-make-map-dom-and-map (number->js-number lat)
|
||||||
|
(number->js-number lng)))
|
||||||
|
|
||||||
|
|
||||||
|
;; make-on-map-click: gmap-object -> world-handler
|
||||||
|
;; TODO: We may want to provide a higher-level abstraction that
|
||||||
|
;; encapsulates the two into a structured value.
|
||||||
|
(define make-on-map-click raw-make-on-map-click)
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;; This is dyoo's API key.
|
|
||||||
(printf "Loading google maps api\n");
|
|
||||||
(initialize-google-maps-api! "AIzaSyCRKQNI_nbyyN1286cssEy3taKj5IZcHN8" #f)
|
|
||||||
(printf "google maps api loaded\n")
|
|
||||||
|
|
||||||
|
|
||||||
;; We dynamically create a dom node for the presentation of the map,
|
|
||||||
;; and an auxiliary gmap value that we use to manage the internal
|
|
||||||
;; state of the map.
|
|
||||||
(define-values (dom gmap)
|
|
||||||
(raw-make-map-dom-and-map (number->js-number -34.397)
|
|
||||||
(number->js-number 150.644)))
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;; on-map-click: world handler
|
|
||||||
;; Creates an on-map-click associated to the gmap, ready to be used in
|
|
||||||
;; a big bang.
|
|
||||||
;; It'll be used as an input device for our world program.
|
|
||||||
(define on-map-click (make-on-map-click gmap))
|
|
||||||
|
|
||||||
dom
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
(big-bang 'nothing
|
|
||||||
(on-map-click (lambda (w v lat lng)
|
|
||||||
(list lat lng))))
|
|
38
examples/google-maps/test-maps.rkt
Normal file
38
examples/google-maps/test-maps.rkt
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
#lang planet dyoo/whalesong
|
||||||
|
(require (planet dyoo/whalesong/web-world)
|
||||||
|
"maps.rkt")
|
||||||
|
|
||||||
|
;; This is dyoo's API key.
|
||||||
|
(printf "Loading google maps api\n");
|
||||||
|
(initialize-google-maps-api! "AIzaSyCRKQNI_nbyyN1286cssEy3taKj5IZcHN8" #f)
|
||||||
|
(printf "google maps api loaded\n")
|
||||||
|
|
||||||
|
;; We dynamically create a dom node for the presentation of the map,
|
||||||
|
;; and an auxiliary gmap value that we use to manage the internal
|
||||||
|
;; state of the map.
|
||||||
|
(define-values (dom gmap)
|
||||||
|
(make-dom-and-map 41.82706261971936 -71.39962630844116))
|
||||||
|
|
||||||
|
;; on-map-click: world handler
|
||||||
|
;; Creates an on-map-click associated to the gmap, ready to be used in
|
||||||
|
;; a big bang.
|
||||||
|
;; It'll be used as an input device for our world program.
|
||||||
|
(define on-map-click (make-on-map-click gmap))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
(big-bang "???"
|
||||||
|
(initial-view
|
||||||
|
(xexp->dom
|
||||||
|
`(div (p (@ (id "where"))
|
||||||
|
"<<fill me in>>")
|
||||||
|
(hr)
|
||||||
|
,dom
|
||||||
|
(hr)
|
||||||
|
(p "Instructions: click the map. The "
|
||||||
|
"world program will follow the map clicks."))))
|
||||||
|
(to-draw (lambda (w v)
|
||||||
|
(update-view-text (view-focus v "where")
|
||||||
|
(format "~a" w))))
|
||||||
|
(on-map-click (lambda (w v lat lng)
|
||||||
|
(list lat lng))))
|
|
@ -42,6 +42,15 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// Returns true if it is a DOM element.
|
||||||
|
// Comes from:
|
||||||
|
// http://stackoverflow.com/questions/384286/javascript-isdom-how-do-you-check-if-a-javascript-object-is-a-dom-object
|
||||||
|
var isElement = function(o){
|
||||||
|
return (
|
||||||
|
typeof HTMLElement === "object" ? o instanceof HTMLElement : //DOM2
|
||||||
|
o && typeof o === "object" && o.nodeType === 1 && typeof o.nodeName==="string"
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
var shallowCloneNode = function(node) {
|
var shallowCloneNode = function(node) {
|
||||||
var result = node.cloneNode(false);
|
var result = node.cloneNode(false);
|
||||||
|
@ -1444,6 +1453,9 @@
|
||||||
// :== string
|
// :== string
|
||||||
var isXexp = function(x) {
|
var isXexp = function(x) {
|
||||||
var children;
|
var children;
|
||||||
|
if (isElement(x)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
if (isString(x)) {
|
if (isString(x)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -1514,6 +1526,9 @@
|
||||||
var children;
|
var children;
|
||||||
var name;
|
var name;
|
||||||
var node;
|
var node;
|
||||||
|
if (isElement(x)) {
|
||||||
|
return x;
|
||||||
|
}
|
||||||
if (isString(x)) {
|
if (isString(x)) {
|
||||||
return document.createTextNode(x);
|
return document.createTextNode(x);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user