There is so much informational noise about new Facebook feature – Messenger Platform, that I could not resist to try it out for our project “Is it kosher?“.
Tag: api
new project: Open Weather for Android
Working on weather data showing for Formula One live timing app, got an idea to aggregate as many as possible weather resources in one app. This is done for those people, who like watching several resources for the most “correct” weather data. You can try this app already. Get it from here OpenWeather.apk Or use… Continue reading new project: Open Weather for Android
Ergast.com listed Open Formula 1 Live app in galery
Data in app is fetched from two main sources – eurosport.yahoo.com and ergast.com. API for getting historical data about Formula 1, developed by Chris is wonderful, free and easy to use. And my app got place in the Gallery of solutions, using ergast.com API. Application Gallery
jQuery.goMap function closeInfoWindow
I continue modifications of plugin goMap. Added new function closeInfoWindow closeInfoWindow: function(marker) { var infowindow = $(this.mapId).data(marker + ‘info’); infowindow.show = false; infowindow.close(); }, It can be used in the following way: $.goMap.createListener({type:’marker’, marker:’admin_marker’}, ‘dragstart’, function() { $.goMap.closeInfoWindow(‘admin_marker’); }); $.goMap.createListener({type:’marker’, marker:’admin_marker’}, ‘dragend’, function() { $.goMap.setInfo(‘admin_marker’, ‘Latitude,Longitude:’+$.goMap.getBound(‘admin_marker’).toString()); google.maps.event.trigger($($.goMap.mapId).data(‘admin_marker’), ‘click’); }); In this example, drag-n-drop marker closes… Continue reading jQuery.goMap function closeInfoWindow
Google maps jQuery plugin modifications
For one of my projects, I was looking for a simple way to implement Google Maps with jQuery. I was lucky to find a really nice plugin goMap. It does a lot of things, which might be useful in Google maps API v3 implementation. Here you can see the examples with descriptions. In my work,… Continue reading Google maps jQuery plugin modifications