Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7889503
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T06:06:59+00:00 2026-06-03T06:06:59+00:00

I want to integrate Google map in my blackberry native application. And my requirements

  • 0

I want to integrate Google map in my blackberry native application. And my requirements are:

  1. searching nearest location
  2. Pin the location on map
  3. Tapping on any pin, a small pop-up will be displayed where User can view detailed
    description
  4. The tool tip showing the address should be interactive.

Something similar to image attached. Guide me with the samples to achieve it.

enter image description here

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T06:07:00+00:00Added an answer on June 3, 2026 at 6:07 am

    You can use GMLocation location example

    GMLocation location = new GMLocation(51.507778, -0.128056, "London");
    invokeGMaps(location);
    

    invokeGMaps method

    public void invokeGMaps(GMLocation l) {
            int mh = CodeModuleManager.getModuleHandle("GoogleMaps");
            if (mh == 0) {
                try {
                    throw new ApplicationManagerException("GoogleMaps isn't installed");
                } catch (ApplicationManagerException e) {
                    System.out.println(e.getMessage());
                }
            }
            RichTextField rich = new RichTextField("fhfdjdytdytd"+ mh);
            add(rich);
            URLEncodedPostData uepd = new URLEncodedPostData(null, false);
            uepd.append("action", "LOCN");
            uepd.append("a", "@latlon:" + l.getLatitude() + "," + l.getLongitude());
            uepd.append("title", l.getName());
            uepd.append("description", l.getDescription());
    
            String[] args = { "http://gmm/x?" + uepd.toString() };
            RichTextField rich1 = new RichTextField("l.getName()"+ l.getName());
            add(rich1);
            ApplicationDescriptor ad = CodeModuleManager.getApplicationDescriptors(mh)[0];
            ApplicationDescriptor ad2 = new ApplicationDescriptor(ad, args);
            try {
                ApplicationManager.getApplicationManager().runApplication(ad2, true);
            } catch (ApplicationManagerException e) {
                System.out.println(e.getMessage());
            }
        }
    

    GMLocation class

    public class GMLocation {    
    String mName;
    String mDescription;
    double mLatitude;
    double mLongitude;
    public GMLocation(double lat, double lon) {
        mLatitude = lat;
        mLongitude = lon;
    }    
    public GMLocation(double d, double e, String name) {
        this(d, e);
        mName = name;
    }    
    public GMLocation(double lat, double lon, String name, String descr) {
        this(lat, lon, name);
        mDescription = descr;
    }    
    public String getName() {
        return mName;
    }    
    public String getDescription() {
        return mDescription;
    }    
    public String getLongitude() {
        return String.valueOf(mLongitude);
    }    
    public String getLatitude() {
        return String.valueOf(mLatitude);
    }
    

    }

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to integrate MarkerCluster with my database driven Google map and have been
In my iphone application i have integrated Google Map.I want to show the country
I am new to Google Map API and i want to integrate Google Map
How to integrate google ratings option in android application? I want to add rating
I want to integrate Google Custom Search into my website searching box. The problem
I've developed a RoR application, and want to integrate Google Analytics so I can
In my application I have to integrate a Google map in one of my
I want to integrate Google Reader in my android application. Please help me on
I want to integrate google plus in my application,but I dont know from where
In iPhone App I want to integrate Google Places Api. Is there any sample

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.