diff --git a/examples/google-maps/maps.rkt b/examples/google-maps/maps.rkt index 4303bea..e85b370 100644 --- a/examples/google-maps/maps.rkt +++ b/examples/google-maps/maps.rkt @@ -8,8 +8,12 @@ ;; (require (planet dyoo/whalesong/js) - (planet dyoo/whalesong/js/world) - (planet dyoo/whalesong/web-world)) + (planet dyoo/whalesong/js/world)) + +(provide initialize-google-maps-api! + make-dom-and-map + make-on-map-click) + ;; initialize-google-maps-api!: string boolean -> void @@ -56,10 +60,9 @@ function(success, fail, lat, lng) { EOF )) - ;; We can listen to certain events, like click. ;; 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. (define raw-setup (js-function->procedure #< (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)))) \ No newline at end of file diff --git a/examples/google-maps/test-maps.rkt b/examples/google-maps/test-maps.rkt new file mode 100644 index 0000000..9f8e04a --- /dev/null +++ b/examples/google-maps/test-maps.rkt @@ -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")) + "<>") + (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)))) \ No newline at end of file diff --git a/web-world/js-impl.js b/web-world/js-impl.js index fd02f2c..df2ac04 100644 --- a/web-world/js-impl.js +++ b/web-world/js-impl.js @@ -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 result = node.cloneNode(false); @@ -1444,6 +1453,9 @@ // :== string var isXexp = function(x) { var children; + if (isElement(x)) { + return true; + } if (isString(x)) { return true; } @@ -1514,6 +1526,9 @@ var children; var name; var node; + if (isElement(x)) { + return x; + } if (isString(x)) { return document.createTextNode(x); }