Wednesday, August 31, 2011

Re: Java's "Write Once, Run Anywhere" for Mobile with GWT is Here!

And yes, add the map to the window. In this case.

        mainWindow.add(mapView);

Regards,

Alfredo

On Wed, Aug 31, 2011 at 8:31 AM, Alfredo Quiroga-Villamil <lawwton@gmail.com> wrote:
Hello Navindian:

You can do this pretty easily since we have already implemented it in the API. This is supported today for Android, iPad and iPhone. Below is a small snippet of what it would look like:

        Window mainWindow = UI.createWindow();
        mainWindow.setTitle("My Map");
       
        final MapView mapView = Map.createMapView();
        mapView.setMapType(Map.STANDARD_TYPE);
        mapView.setRegion(Region.newInstance(35.823483, -78.825562, 0.5, 0.5));
        mapView.setAnimate(true);
        mapView.setRegionFit(true);

        mainWindow.open();
        mainWindow.show();

There are a bunch of goodies too, for example annotate locations, update the map on the fly, zoom in, zoom out, etc. You can also send a web service call to your backend service and receive the response and act accordingly,

Regards,

Alfredo


On Wed, Aug 31, 2011 at 2:41 AM, Navindian <navindian@gmail.com> wrote:
I have developed google maps based application in GWT. The architecture being used here is GWT+RPC+Spring+AOP+Oracle DB.
I wish to put one more view on Android and iphone application. any thoughts?

Thanks
Navindian

On Mon, Aug 29, 2011 at 9:58 PM, Alfredo Quiroga-Villamil <alfredo@emitrom.com> wrote:
All:

We are really happy to announce the addition of GWT4Titanium Mobile to
our suite of available products.

With a 100% implementation of the Appcelerator's API for Titanium
Mobile, it has never been easier to develop cross platform mobile
applications and all from the convenience of your Titanium Studio IDE
in Java. Reuse all the GWT techniques you are already familiar with.

- Write native applications for Android and IOS in Java using GWT and
Titanium.
- I18N Support.
- GWT-RPC, RequestFactory as well as RequestBuilder for your Ti Mobile
Apps.
- Dependency Injection support via GIN.
- JSON and XML to POJOs support.
- Event Bus support.

Would you like to find out more? Visit us at:

http://www.emitrom.com/gwt4timobile

Happy Coding from the Emitrom Team!

--

You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.


--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



--
Alfredo Quiroga-Villamil

AOL/Yahoo/Gmail/MSN IM:  lawwton





--
Alfredo Quiroga-Villamil

AOL/Yahoo/Gmail/MSN IM:  lawwton


--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

No comments:

Post a Comment