problem with map

Hello

I want to show 10 property of single page on the map, but I don't have a solution.

I take latitude and longitude for each property of the webservice.but my code I show single property

the map on 10.

Code:

mapping class extends screen
{
double lat, lon;
int latitude and longitude;
   
MapView mapview.
mappage()
{
       
      
for (int i = 0; i)<>
{
MapView = new MapView();
LAT = double.parseDouble (main.lati [i]);
Latitude = (int)(lat*100000);
LON = double.parseDouble (main.longi [i]);
Longitude = (int)(LON*100000);

mapview.setLatitude (latitude);
mapview.setLongitude (longitude);
mapview.setZoom (5);
Invoke.invokeApplication (Invoke.APP_TYPE_MAPS, new MapsArguments (mapview));
     
}
}
}

Please help me as soon as possible.

Thanks for the reply

I have sloved it myself.

Tags: BlackBerry Developers

Similar Questions

  • Problems with maps

    Hello

    I am trying to use a google map in my application, find like here: [http://obiee101.blogspot.com/search/label/MAPS]


    But I have a problem:

    If I put this line in the prefix: function GetMapAdress)
    shows me the icon of the first city of my table

    Now if I put the line in the story me turns out to be only the last city of the table icon

    This passage for this?

    Forgive the English

    Hello
    Check it out, use it...
    and then tell us what is happening...

    First of all, I use the instructions in the blog you mentioned... but I had some problems with Internet Explorer...
    So, I used the one I mentioned... try it...

    Or, before you do anything, have you tried other browsers?

    If the answer to the question..., close it and give the appropriate points...

    I hope I helped...

    ///////////////////////////////////////
    http://greekoraclebi.blogspot.com/
    ///////////////////////////////////////

  • Problem with (map ISOTAP of Microsoft) wireless adapter

    I have a problem getting my wireless connection works, I can get online using a cable, but not with the radio.

    I checked the network adapters in the Device Manager and one of them that Microsoft ISATAP Adapter has a small triangle against it, in properties it says "this device does not work properly because Windows cannot load the drivers for this device. (Code 31)

    I tried to download the drivers but without success, I get a message saying that windows already has the latest drivers installed. I tried to uninstall it but could not get another to install, I eventually do a system restore to the date of his last load updates, but he did to reinstall one that works yet with the same error code. I tried many times to get a download that works, but no luck, anyone have any ideas?

    Hello

    1. which version of the operating system are you using?

    2. What is brand and model computer?

    I suggest you consult the site mentioned below:

    Windows wireless and wired network connection problems

    http://windows.microsoft.com/en-US/windows/help/wired-and-wireless-network-connection-problems-in-windows.

    When you try to update the drivers such as suggested in the link, try to update the wireless network card drivers.

    If you use the Vista operating system, I suggest you consult the site mentioned below:

    On a Windows Vista-based computer or on a Windows Server 2008-based computer, the Microsoft ISATAP map appears with a yellow exclamation mark next to it in Device Manager, and you also receive an error message

    http://support.microsoft.com/kb/932520.

  • Problems with map graphics on my Satellite A60-672

    I have a Satellite A60-672 which graphics by ATI. Repeatedly at startup until it broke down and the system crash online said whenever it is ATI technologies. I sent ATI and they said that there is nothing to do with them.

    I tried Toshiba, but none of the work address by e-mail. The crash system tells me to uninstall the software, but given that I put on, I mistrust all this as it may ruin the functioning of my laptop.

    Currently, my laptop works very well with this ongoing problem. This happened to someone else or we know how to contact toshiba.

    Thank you

    Sounds like a driver problem, you just need to download the Toshiba display driver, uninstall your old ATI driver with the ATI Control Panel, restart and reinstall again.
    don't worry this will cause anything on your laptop in addition to repairing damaged files that crash. It is a simple operation.

  • Problem with maps blackBerry Smartphones

    My "BOLD" works correctly with all the features, I can receive emails (with service BIS) and navigate, but when I try to open cards there is an error as "you do not BIS or BES service" and cards feature does not work.

    Software version: v4.6.0.166

    Thank you

    Contact your operator on the subject, if you have a data plan, for sure, you can use blackberry maps.

  • problems with mapping

    Hello

    I need advice on the matter from validate the mapping.

    I need to validate the mappings for a location if the values of any user defined dimension not returned mapping logical I need gray on the fish.
    Currently, if some user-defined dimension members are not showing all the values that they are null even then the fish is gold I mean, you can't limit the fish to validate for the dimensions defined by the user. is it possible to only out gray?
    Help, please

    Thank you
    Mahesh

    Mahesh,

    It would probably be better done outside of a script to Import DataPump. The ImportAction script can be more appropriate since its events are cancellable, which allows
    you ignore everything that import the events downstream and do not reach the phase of import before engendering long processes such as mapping. Subsequently, StartMapProcess of the ImportAction event is coded to the stop status and set to fail when one or several locations exist in the entity (table) field data source but not in the table of location search. Maybe it's not exactly what you need, but it should be close enough. This code has not been tested for accuracy.

    Sub ImportAction(strEventName)
         If LCase(strEventName)="startmapprocess" Then
              strWorkTable = "[" &API.State.GstrActiveWorkTableName& "]"' WorkTable is temp table for applying mapping rules, etc.
              strTblLU = "[dbo].[Location_Type_LookUp]"' Your lookup table
              ' Query to pull Locations that exist in source data, but not in the Location lookup table
              strSQL = "SELECT DISTINCT entity FROM " &strWorkTable&_
                       " WITH (NOLOCK)" &_
                       " WHERE NOT entity='' AND entity IS NOT NULL" &_
                       " AND NOT EXISTS (" &_
                                       "SELECT * FROM " &strTblLU&_
                                       " WITH (NOLOCK)" &_
                                       " WHERE " &strTblLU& ".[Location]=" &strWorkTable& ".[entity]) " &_
                         "ORDER BY entity"
              Set rs = DW.DataAccess.farsFireHose(strSQL, False)
              With rs
                   Do While Not .EOF
                        strMsngLoctns = .GetString(2,20,,vbCrLf)
                        strErr = strErr & strMsngLoctns & vbCrLf
                   Loop
                   .Close
              End With
              If Not strErr="" Then
                   strErr = "PLEASE NOTIFY THE FDM ADMIN THAT THE FOLLOWING LOCATIONS " &_
                            "ARE MISSING FROM THE LOCATION TYPE LOOKUP TABLE:" &vbCrLf&vbCrLf& strErr &vbCrLf&vbCrLf
                   RES.PstrActionValue = strErr' Set the error message
                   RES.PlngActionType = 2' Display the message in a new window
                   RES.PcolScriptInfo.Item("ScriptInfo").ColFlds.Item("Cancel").varValue = True' Abort the remaining Import events
                   strLoc = LCase(Trim(RES.PcolScriptInfo.Item("ScriptInfo").ColFlds.Item("Location").varValue))
                   strCat = LCase(Trim(RES.PcolScriptInfo.Item("ScriptInfo").ColFlds.Item("Category").varValue))
                   strPer = LCase(Trim(RES.PcolScriptInfo.Item("ScriptInfo").ColFlds.Item("Period").varValue))
                   API.MaintenanceMgr.mProcessLog CStr(strLoc), CStr(strCat), CStr(strPer), 1, False, "Location Type missing from lookup table", Now()' Set process status = fail
              End If
         End If
    End Sub
    
  • Problem with map() Vector method

    I'm trying to map a vector of strings and assign vector is a variable, but the result of the map() is null...

    If I use a table instead of a vector. < String > the problem disappears...

    Here is the code:

    private var validPhotoExtensions:Vector. < String > = vector. < String > (["jPG", "jpeg"]);

    var toLowerCase:Function = function (point: String, index: int, vector: Vector. < String >): String
    {
    var str:String is String (item) .toLowerCase ();.
    return str;
    };

    var bla:Vector. < String > = new Vector. < String > ();

    The value of bla will be nil...

    bla = validPhotoExtensions.map (toLowerCase);

    Looks like the fix will be available in the next version of player!

    That was very frustrating.

  • Problems with mapped drives folder does not properly?

    • Hello, I have my readers mapped times PC on my network for single, however when I try to access it from the group main wokk PC that I use the most, it does nothing, except if I click on it above the folder box, I stored shortcuts in and re-fresh from hitting a few or several times, then he at that time goes crazy and does nothing and says does not on the storage folder, I used store it in, what am I doing wrong? It works sometimes, but I can't count on them to work when I need them too to help ideas everyone, thanks in advance., Teltom1

    Hi Teltom1,

    You try to access the shared computer using the UNC (Universal Naming Convention) path. The syntax is as follows.

    \\computername\sharename

    See also:

    How to troubleshoot a network home in Windows XP

  • I have a problem when using Google Maps, at a certain point my custards computer window and says there is a problem with the display drivers and he recovered, but it is not. Problem does not occur with Int Explorrer, so I don't think it's the computer

    When using google maps via Firefox, after asking a place which is not the General section of North America who comes up regularly, the firefox screen becomes white with a narrow banner at the top. A message appears in the lower right corner that says something on display drivers having had a problem, but now have been recovered. However, the display is not recover and the message of the banner is that Firefox is not responding. When I go to restart Firefox if I'm about to restore, the page is still frozen.
    I don't think there is a problem with my computer because it doesn't happen if I used to go to google maps, then G-cards works normally.
    This phenomenon didn't happen before the last update Google or Firefox. I used Fiefox for some years and also Google Maps on previous computers and on this one and not had it before.
    It is a relatively young computer (Asus EeSlate 121) less than a year. I have used Firefox since I bought it and until recently had no problem with Google Maps.

    I solved it myself, after the 'note' that was FF/Mozilla, just as I finished my message, commenting on what it was that my system was, I wnnt back to check my plug-ins, etc. I downloaded the latest Java, the TWO 32-bit AND 64-bit versions and latest Firefox.
    Now everything works.
    Thank you
    B.

  • Slate 7 voicetab: problem with Google Maps.

    Friends, long since I've updated my tab to Kitkat of JellyBean, I have a problem with Google maps. Whenever I use Google maps, it freezes the tab at some point and then I have to restart the tab. I updated the app several times and restored too. A tab reset but still having the same problem. What should I do to prevent it? At the moment I use 'maps', but I need to use Google maps. Please give notice to fix the problem.

    Hi there @Mono45

    Welcome to the Forums of HP Support! It's a good place to find the help you need, so many other users, the HP experts and other members of the support staff. I understand that your 7 Slate freezes on you when you try to run Google Maps. I'm happy to help you with this.

    I would recommend that you go well following linked page from above and in the section on the use of "find the solution that fits...." ' article 'an apps constantly reply on your HP Tablet.

    HP tablets - tablets hangs or freezes (Android KitKat, Jelly Bean)

    If it works for you, please mark this message as a solution.

  • Problem with the ISATAP #3 map

    Hi I have a problem with the ISATAP #3 card. I read a previous thread who recommended to uninstall and then put it back, which I've tried, but the pilot does not re - installed. Can someone help me with this? Thank you

    Jack

    Hello

    Control Panel - Device Manager - do a right-click on the two - UNINSTALL - REBOOT

    Nothing else to do, Windows will do the rest. And you can ignore the errors altogether if you want and
    on some computers, it will always be there but don't cause any trouble.

    On a Windows Vista-based computer or on a Windows Server 2008, Microsoft computer
    ISATAP map appears with a yellow exclamation next to it in Device Manager and you also
    error message.
    http://support.Microsoft.com/kb/932520

    Check the answer by Diana D. here:
    http://social.answers.Microsoft.com/forums/en-us/vistahardware/thread/a75e8bf1-9a63-4CF4-BF6C-d43a26175959

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle="" -="" mark="" twain="" said="" it="">

  • Problem with Google Maps blackBerry Smartphones?

    Hi, I'm having a lot of problems with the Google Maps download.

    I just got my blackberry a couple of weeks, and google maps is a feature that I really need.

    I have download it without problems, and then when I opened the application I can search for a place with no trouble.

    However, I can't find any more places. If I enter another address, I get the 'getting directions' screen and he's looking for hours and hours. Finally, I just delete the program and reinstall it if I want to search for another location.

    Why should I do this? Is there something wrong with my phone?

    Upgrade to the latest OS:

    See the link below for download and simple installation instructions.

    http://www.BlackBerryForums.com/General-8500-series-discussion-Gemini/235791-latest-OS-8520-5-0-0-13...

    Make a backup of your device first, using Desktop Manager > backup. Close the office at the end Manager.

    1. download the OS files to the PC then install on the PC by running (double click) the downloaded file.
    2. go in c:\program files Research in motion\apploader and delete the file named "vendor.xml."
    3. plug in the BB and double-click on "Loader.exe." It is located in the same place as the above vendor.xml file.

  • Problem with the displacement map

    Hi all

    I have problem when using a displacement map. Basically, I followed all the steps (Desaturate the background image, slight fuzziness, copy/paste on the new doc, save it as displacement.psd on the desktop).

    And the problem is that whenever I have download the displacement on the image file and no matter what numbers I enter ladders vertical and horizontal, the only thing it does is to move slightly to the left upwards. There is no deformation applied of any kind on the image. I have this same problem with any image that I try to apply the displacement.

    Can someone help and explain what could be the problem?

    dragantomas wrote:

    You looking at screenshot and I am not able to describe what you are trying to explain here it, sorry. Can you explain?

    We tolerate little tmyusuf74 because he throws in his positions of left field now and again, never any sense to anyone.  Go figure.

    Anyway.  Back to your problem...

    Preferences > file management > maximize PSD and PSB file compatibility always set him.

    Once, I lost two days of chasing this little witch hunt.

  • problem with mode Dell Wireless 1395 mini-map standby in windows xp

    I have problem with my computer laptop inspiron 1525 and the mini-map dell 1395 wireless.

    I installed windows vista for about 4 months, and there is no problem with the wireless.

    now, I have installed windows xp prof.  and it's the wireless card works fine. I put my laptop mode "Eve" and after a walk to the top. the wireless card absolutely does not work.

    I tried to uninstall and install the driver, I tried to run windows backup, I tried to do what I can, but no useful idea.

    Tip: When I try to check for the networks without wire around me, he say like this but in Arabic "could not verify the 65535 channel, verification will be repeated later.

    http://www5.0ZZ0.com/2008/07/02/17/850863907.jpg

    [url = http://www.0zz0.com] [img] http://www5.0zz0.com/2008/07/02/17/850863907.jpg [line] [url]

    any body help me befor replacing the xp on vista


  • problems with mysql OWB mapping: double, enum, TEXT fields

    Hi all

    I'm trying to get my mysql source environment data in the oracle environment, but I have problems with a couple of types of data source: (double, enum, text).

    After we used the mapping script:
    I used david original platform allans definition script (thanks david)

    In the target mysql source mapping
    TEXT is mapped as varchar (max)
    double as double
    ENUM as CHAR (0)? and like TANK (2000) in the temporary_table

    the deployment will correctly, but when running, there are problems with the mapping package generated on the target...

    "Job 69 error: ERROR (461, 42): PLS-00103: encountered the symbol") "when expecting one of the following values:"

    (

    (462: 42) ERROR: PLS-00103: encountered the symbol ")" when expecting one of the following values:

    (

    (473, 38) ERROR: PLS-00103: encountered the symbol "INDEX" when expecting one of the following values:

    "

    When you look in the package, you see that it is linked to

    ' TYPE ' T_C$ _26_DE "IS THE TABLE OF VARCHAR (MAX) INDEX DIRECTORY;
    TYPE "T_C$ _28_WI ' IS THE DOUBLE INDEX DIRECTORY TABLE.


    a double does not exist such an and should probably be mapped to 'DOUBLE PRÉCISION' in oracle.

    the enumeration on the target is mapped in a char (1)...

    I adapted the scripts of platform like this:

    "OMBALTER PLATFORM"MySQL"DELETE PLATFORM_TYPE"double ";
    Platform OMBALTER "MYSQL" ADD PLATFORM_TYPE "double".
    Platform OMBALTER 'MYSQL' EDIT PLATFORM_TYPE 'double' SET PROPERTIES (SYNTAX) VALUES ('double')
    Platform OMBALTER 'MYSQL' ADD FROM_PLATFORM_TYPEMAP 'DOUBLE_TOG' SET PROPERTIES (FROM_DATATYPE, TO_DATATYPE) VALUES ('double', 'DOUBLE PRÉCISION')
    Platform OMBALTER 'MYSQL' ADD TO_PLATFORM_TYPEMAP 'DOUBLE_FROMG' SET PROPERTIES (FROM_DATATYPE, TO_DATATYPE) VALUES ('DOUBLE PRECISION', 'double')


    Platform OMBALTER 'MySQL' 'Double precision', DELETE PLATFORM_TYPE;
    Platform OMBALTER 'MYSQL', 'Double précision' ADD PLATFORM_TYPE
    Platform OMBALTER 'MYSQL' PLATFORM_TYPE EDIT 'double precision' SET PROPERTIES (SYNTAX) VALUES ('double precision')
    Platform OMBALTER "MYSQL" ADD FROM_PLATFORM_TYPEMAP "DOUBLE PRECISION_TOG" SET PROPERTIES (FROM_DATATYPE, TO_DATATYPE) VALUES ('double precision', 'DOUBLE PRÉCISION')
    Platform OMBALTER 'MYSQL' ADD TO_PLATFORM_TYPEMAP 'DOUBLE_FROMG' SET PROPERTIES (FROM_DATATYPE, TO_DATATYPE) VALUES ('DOUBLE PRÉCISION', 'double precision')
    --"

    Platform OMBALTER "MYSQL" ADD PLATFORM_TYPE "text".
    Platform OMBALTER 'MYSQL' PLATFORM_TYPE EDIT 'text' SET PROPERTIES (SYNTAX) VALUES ('text')
    Platform OMBALTER 'MYSQL' ADD FROM_PLATFORM_TYPEMAP 'TEXT_TOG' SET PROPERTIES (FROM_DATATYPE, TO_DATATYPE) VALUES ('text', 'CLOB')
    Platform OMBALTER 'MYSQL' ADD TO_PLATFORM_TYPEMAP 'TEXT_FROMG' SET PROPERTIES (FROM_DATATYPE, TO_DATATYPE) VALUES ('CLOB', 'text')

    help highly appreciated ;-)

    Philippe

    Published by: user11987935 on August 18, 2010 13:56

    Hi Philippe,.

    Try this...
    Set the mapping in the basic mode GAME...
    Right-click the mapping-> select Configure
    Under Options-> generation of Code generation Mode-> defined in function
    Under Runtime Paramerters-> default Mode Operting-> defined in function

    Deploy the mapping and try again...

    Kind regards
    Suraj

Maybe you are looking for