Altering a neighborhood lot map

I have a neighborhood lot map that is older, I scanned it and used Adobe to create a Word.pdf.  I thought I would be able to edit the new people who have moved in on the map, I can create a text box, but that does not allow me to make the box without altering the lot or street some.

It is a neighborhood map of 275 homes,in a golf course neighborhood,  someone originally had the map and placed last names and the address number on the individual lot.  The print is quite small (like a 6) I would happily purchase the upgrade if I was certain that it would work the way I would like it to.  What I want to do is to be able to edit the map whenever someone moves in or out.  We used it in a neighborhod phone directory and it was very helpful.  The map will remain the same, as will the address numbers and street names.   I just want to edit the names.

Similar Messages

  • How can i help alter wrong locations in Maps?

    I have noticed that several "places of interest" in my area are marked but are in the wrong places.  Is it possible to alter these for ALL future users?
    Is it possible to add other "places of interest" - or is this done by a commercial arrangement I wonder?

    When you find the POI click on it and there is a Report a Problem button.
    You can add the same way or add it in Yelp.

  • Coordinates of paths that border live paint areas

    I have several illustrator files that show drawings of neighborhood lot maps.  The lots are drawn from single lines where one long line creates the front of all the lots on the street.  Another line creates the back and smaller lines divide the lots on the sides.  Each line is on its own layer.   Each lot is labeled with a lot number.  I can create a live paint group and fill in each lot.  But this doesn't divide up the front, back and side lot lines for me and create a new shape with the front, back, and side lot lines drawn for each lot.  I am wondering if it's possible for a script to do this by:
    For each lot fill
    Copy the segments of the lines on the front, back and side layers that overlap the lot fill.
    Create a new group from those line segments.
    This will create a duplicate lot shape that retains the front, back and side line definitions.
    I am not a script writer but would like to hire somebody who could write this for me as it would make my world much easier if it can be done with a script!
    Thanks in advance.
    Rebecca
    602/451-7433
    rebecca at cibolacreative dot com

    Hi Rebecca, like I said, if the lines are not touching it won't work
    I made this
    if the lines are not touching you won't be able to use the tool, we might need to think of doing something else.

  • How to deploy and run of a mapping created in owb in developer suite

    Hello, could you please help me to check where is wrong?
    I use WAREHOUSE BUILDER of ORACLE 9I DEVELOPER SUITE and I do it as below:
    1, create a OWB REPOSITORY named "OWB" with WAREHOUSE REPOSITORY Assistant in the SUITE ;
    2, create a OWB Runtime REPOSITORY named "OWB1" with WAREHOUSE Runtime Assistant in the SUITE;
    (i wonder why not to ask me to create a connected user and target schema like in OWB product alone?)
    3, open OWB CLIENT and create a new project named TESTPROJECT;
    4, create a source module and a target module.
    5, create a simple mapping, which is the field link between two tables which
    have the same structure(i swear that any vertified error will not occur).
    6, select this mapping and choose Generate in the menu of "module". Then select
    "Generate Script" in the window of Generation mode, Then select Deploy in
    the window of RESULT Generation Window after altering the tab of Mapping, and fill in the user information
    which is the same as OWB Runtime Assistant. After select Creation button in the
    window of data-base deploy, it shows the error that "table or view do not
    exist".
    I don't know where is wrong or this error means? And how to solve it?
    Is there anybody help me?
    and what the diffence on earth between the OWB in the DEVELOPER SUITE and the one as a single product?
    Thanks a lot in advance!

    could you please help me to check where is wrong?

  • Mapping with dynamic sql

    Ok boys, another homework problem gone awry...
    I'm trying to create a mapping function to sort by NAME...here's the code:
    ----------CREATE MEMBER-----------------
    CREATE OR REPLACE TYPE BODY item_ot
    AS
      MEMBER FUNCTION mapping
       RETURN VARCHAR2
    IS
      lv_sorting VARCHAR2(100);
    BEGIN
    IF ITEM IS NOT NULL THEN
       lv_sorting:=ID||', '||NAME||', '||DESCRIPTION;
    ELSE
       lv_sorting:='No item exists.';
    END IF;
    RETURN lv_sorting;
    END;
    MAP MEMBER FUNCTION mapping RETURN VARCHAR2
    IS
    BEGIN
      RETURN name;
    END;
    END;
    /Here's the errors:
    3/19     PLS-00539: subprogram 'MAPPING' is declared in an object type
             body and must be defined in the object type specification
    6/26     PLS-00538: subprogram or cursor 'MAPPING' is declared in an
             object type specification and must be defined in the object type
             body
    8/2      PL/SQL: Statement ignored
    8/5      PLS-00201: identifier 'ITEM' must be declared
    15/12    PL/SQL: Item ignored
    15/12    PLS-00305: previous use of 'MAPPING' (at line 3) conflicts with
             this use
    15/21    PLS-00539: subprogram 'MAPPING' is declared in an object type
             body and must be defined in the object type specification----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    For good measure, here's the objects leading up to this point:
    ------------CREATE OBJECT TYPE-----------
    CREATE OR REPLACE TYPE item_ot AS OBJECT
      (ID  NUMBER(2),
       NAME   VARCHAR2(25),
       DESCRIPTION   VARCHAR2(100));
    -----------CREATE TABLE------------------
    CREATE TABLE bb_coffee
    (PRICE    NUMBER(6,2),
      TYPE     CHAR(1),
      ITEM     item_ot);
    ----------INSERT ROWS TO TABLE-----------
    INSERT INTO bb_coffee
    VALUES ( 38.00, 'E', item_ot(12, 'Cafe Press', 'Steel French Coffee Press'));
    INSERT INTO bb_coffee
    VALUES (10.00, 'c', item_ot(76, 'Espresso','Roasted Italian Style'));
    INSERT INTO bb_coffee
    VALUES (24.50, 'E', item_ot(44, 'Coffee Carafe', 'Thermal Insulated Carafe'));
    -----------ADD METHOD FOR SORTING-------
    ALTER TYPE item_ot
    ADD MAP MEMBER FUNCTION mapping RETURN VARCHAR2 CASCADE;

    Here's an example from Chapter 14 of Oracle Database 11g PL/SQL Programming that might help:
    CREATE OR REPLACE TYPE map_comp IS OBJECT
    ( who VARCHAR2(20)
    , CONSTRUCTOR FUNCTION map_comp (who VARCHAR2) RETURN SELF AS RESULT
    , MAP MEMBER FUNCTION equals RETURN VARCHAR2 )
    INSTANTIABLE NOT FINAL;
    CREATE OR REPLACE TYPE BODY map_comp IS
    CONSTRUCTOR FUNCTION map_comp (who VARCHAR2) RETURN SELF AS RESULT IS
    BEGIN
    self.who := who;
    RETURN;
    END map_comp;
    MAP MEMBER FUNCTION equals RETURN VARCHAR2 IS
    BEGIN
    RETURN self.who;
    END equals;
    END;
    DECLARE
    -- Declare a collection of an object type.
    TYPE object_list IS TABLE OF MAP_COMP;
    -- Initialize four objects in mixed alphabetical order.
    object1 MAP_COMP := map_comp('Ron Weasley');
    object2 MAP_COMP := map_comp('Harry Potter');
    object3 MAP_COMP := map_comp('Luna Lovegood');
    object4 MAP_COMP := map_comp('Hermione Granger');
    -- Define a collection of the object type.
    objects OBJECT_LIST := object_list(object1, object2, object3, object4);
    -- Swaps A and B.
    PROCEDURE swap (a IN OUT MAP_COMP, b IN OUT MAP_COMP) IS
    c MAP_COMP;
    BEGIN
    c := b;
    b := a;
    a := c;
    END swap;
    BEGIN
    -- A bubble sort.
    FOR i IN 1..objects.COUNT LOOP
    FOR j IN 1..objects.COUNT LOOP
    IF objects(i).equals = LEAST(objects(i).equals,objects(j).equals) THEN
    swap(objects(i),objects(j));
    END IF;
    END LOOP;
    END LOOP;
    -- Print reorderd objects.
    FOR i IN 1..objects.COUNT LOOP
    dbms_output.put_line(objects(i).equals);
    END LOOP;
    END;
    DROP TABLE persistent_object;
    CREATE TABLE persistent_object
    ( persistent_object_id NUMBER
    , mapping_object MAP_COMP );
    CREATE SEQUENCE persistent_object_s1;
    INSERT INTO persistent_object
    VALUES (persistent_object_s1.nextval,map_comp('Bilbo Baggins'));
    INSERT INTO persistent_object
    VALUES (persistent_object_s1.nextval,map_comp('Frodo Baggins'));
    INSERT INTO persistent_object
    VALUES (persistent_object_s1.nextval,map_comp('Peregrin Took'));
    INSERT INTO persistent_object
    VALUES (persistent_object_s1.nextval,map_comp('Meriweather Took'));
    INSERT INTO persistent_object
    VALUES (persistent_object_s1.nextval,map_comp('Sam "Wise" Gamgee'));
    SELECT map_comp().map
    FROM persistent_object
    ORDER BY 1;

  • Connection between CRM back end and ASP front end website for Ecommerce

    Hi All,
    I want to establish the connection between a ASP website and CRM back end server(we are replacing th existing ERP back end system with SAP CRM ).
    I want to know whether I have to go with XI or any other connectors provided by SAP to establsih the communication between the existing ASP website and CRM back end server..
    Can anyone please help me out.
    Thank you,

    Okay here is the general concept for your scenario:
    -You will call standard/custom RFC's(could be BAPI's) in the CRM system from the existing application. 
    -You will need to write a new model layer in your ASP application that calls the RFC layer in CRM
    -You decide what data you want to use from CRM in your application
    Let's assume at minimum you will want to use the product master, business partner master, and business transactions.  You will need RFC's/BAPI's for every interaction point where you will consume/publish data to CRM.
    So when an user creates an order from your e-commerce site, you will need to support saving an order in CRM.  This is example of how you need to map out each function in your existing site to a part of the CRM system.  Since we don't know what your site currently does, this is something you would have to do.
    Once you have mapped out the business level data to the CRM system, then you can evaluate where you will need a BAPI and/or RFC call.  Once that is done, then you can look at the CRM system and see what standard pieces can be called.  Then everything else is custom development.  Your ASP application will call CRM via RFC. 
    It is possible to do what you want to do, but it is going to require a lot mapping work and a fair amount of development effort to integrate the two pieces.  I don't know if you might be better off looking at the SAP Internet Sales Solution instead so you could focus only customizing that application, instead of worrying about an integration problem.  It just depends on how much special functionality your existing e-commerce site has today.
    My general recommendation would be for you to hire a consultant that has done an SAP e-commerce project using SAP CRM in the past and let them guide you on the implementation issues.  An on-site resource could better answer your "high-level" questions.
    However if you have more questions please ask and I will try to answer to the best of my knowledge.
    Good luck,
    Stephen

  • Oracle 9.0.1 on RedHat 7.1

    When installing Oracle 9.0.1 Database enterprise edition. I do
    encounter the following error in the make file, target install,
    ld cannot find -lclntsh. This is in the following makefile:
    OraHome1/plsql/lib/ins_plsql.mk. The file where is refered to, is
    not a object file but a map file generated during the install
    procedure. Does anybody have a clue which make file I need to
    alter so that the map is included instead of beeing linked.
    Thanx,
    S.A. de Heer
    S&R Solutions.

    Versions of ld prior to version 2.11 ignored the "-z defs" flag.
    ld version 2.11 and later have the ability to use this flag.
    Because of this the genclntsh script fails to produce the
    libclntsh.so library on a machine running ld > 2.11.
    The "-z defs" is set in the variable LD_SELF_CONTAINED in the
    genclntsh script.
    fix:
    When receiving this error during installation,
    follow these steps:
    1. Open a new console window on the host as the installation
    user.
    2. Set up the Oracle environment (i.e. ORACLE_HOME).
    3. Make a backup of the $ORACLE_HOME/genclntsh script.
    4. Remove the ${LD_SELF_CONTAINED} flag from the ld command in
    the 'Create Library' section.
    5. Run the genclntsh script.
    6. Click on 'Retry' in the Universal Installer
    The installation will now proceed.
    have a nice day :)

  • How to partition the hard drive in Mac OS 9?

    I  have a 366 MHz iBook Clamshell, and to install Yellow Dog Linux without wiping OS 9, I must partition the hard drive. It does not have any CD tray, and the hard drive is 10 GB.

    If you are trying to partition the disk you are booting from, then no, it cannot alter it's partition map while booted.  You will have to use some alternative boot device (ordinarily this would be a bootable CD, but you'll need to find some workaround like an external device).
    Also, the utilities in OS 9 will only repartition that drive by erasing the whole thing.  You will need to boot into a Linux OS with one of the Linux partition tools if you want to non-destructively alter that discs partition table (use something like GParted on a bootable UBuntu disc or something like that).

  • Need to send a link in mail using apex

    Hi,
    I need to send a mail using apex which will contain a link for a specific page. For sending mail , I used the following query:
    for c1 in (select EMAIL_ADDRESS
                 from USER_DETAILS
                where USER_NAME= :P4_USER_NAME and EMAIL_ADDRESS=:P4_EMAIL_ADDRESS) loop
      if c1.EMAIL_ADDRESS is not null then
        HTMLDB_MAIL.SEND(
          P_TO       =>  c1.EMAIL_ADDRESS,
          P_FROM     => '[email protected]',
          P_BODY     => 'Your new password is '|| 'xyzxyz',
          P_SUBJ     => 'Password detail' );
      end if;
    end loop;
    But how i will send the required link.
    Pls give some idea.
    Thanks,
    Chandra Bhanu

    Hi Chandra,
    Try this version of your code, you will alter the url to map to your apex server.
    DECLARE
       l_body   VARCHAR2 (4000);
    BEGIN
       FOR c1
          IN (SELECT email_address
                FROM user_details
               WHERE     user_name = :p4_user_name
                     AND email_address = :p4_email_address)
       LOOP
          IF c1.email_address IS NOT NULL
          THEN
             -- Include link to login page
             l_body :=
                   '<p>Your new password is '
                || 'xyzxyz'
                || '  To access the application and change your password, follow the '
                || 'link below.</p><p><a href="http://'
                || '</p><p><a href="http://edwprd:7777/pls/oitp/f?p=&APP_ID.:LOGIN</a></p>';
             apex_mail.send (p_to     => c1.email_address,
                             p_from   => '[email protected]',
                             p_body   => l_body,
                             p_subj   => 'Password detail');
          END IF;
       END LOOP;
    END;
    Jeff

  • Make Revision Level Case Sensitive

    Hi,
    I am creating a new revision level for a material under a change number. Under that same change number I am changing the BOM and routing for the new revision level of the material. We use the drawing number of the material as the Material Number. If client does some changes in the drawing they capture it as the "Alteration Index" (we have mapped it as Revision Level in SAP). Now the requirement from client is that we should have Revision Level as case sensitive i.e. A" and "a" should be treated as different entities. How can this be mapped in SAP as in the system the revision level is not case sensitive?
    Any ideas please?

    Let me add some more information, so that someone may find this thread interesting to reply :). My client is using alteration index (Revision Level in SAP) as both capital and small letters i.e. revision level is case sensitive for them. I cannot map their Revision Level in SAP as they will have two Revision Levels "A" and "a" as a different entity, but SAP will take both as one. I discussed this with my ABAPer and I got some pointers:
    1) We can copy the revision level field, make a Z-field and make it as case sensitive. But this way we will have huge task to point to this new field where ever Revision Level field is referenced.
    2)We can make this field itself as case sensitive i.e. make this SAP standard field as case sensitive.
    I think that we can go with the second option, but do not know if it can cause any serious implication.
    Can someone advice please?

  • EMBEDED SWF VIDEO CANT STOP AUDIO

    Ok. So I am using a flash template that I have altered quite
    a lot. It has video thumbnails with a preloader at the beginning.
    The preloader at the beginning was slow though so I wanted to put
    my general demo reel so it would play while it was loading but stop
    when the site was loaded (that way people could have something to
    look at). I have it so it hides ok. However, it continues to play
    the rest of the videos audio. I need this to stop, but I have tried
    just about everything. I know it is probably something stupid I am
    doing, but if someone could give me a hand I would appreciate it. I
    am half bald at the moment!
    My Website
    Here is the Action Script (3.0) I have for the site (without
    any attempts to shut off the audio since I can't seem to do it
    right anyways). Anyways the video is embedded in cover_mc.

    Try this  SoundMixer.stopAll(); on load complete.

  • Undocumented error when trying to copy azure database (worked fine until recently)

    Until recently executing
    create database CB_Karakter_ACC as copy of jzv6wwe8gl.CB_Karakter_PRD
    on azure instance bycz1k0pmu worked fine. Today, I'm suddenly getting
    Msg 40197, Level 20, State 1, Line 65536
    The service has encountered an error processing your request. Please try again. Error code 40184.
    I cannot find any info relating to error code 40184 anywhere on the internet. What does this message imply?
    FYI: Just did a backup of the PRD db with redgate cloud services (to azure blob) and tried to restore it on the test instance. I got msg:
    Microsoft Restore Service returned an error: Error encountered during the service operation. Could not import package. Error SQL72014: .Net SqlClient Data Provider: Msg 15247, Level 16, State 100, Procedure sp_create_login, Line 1 User does not have permission
    to perform this action. Error SQL72045: Script execution error.  The executed script: CREATE LOGIN [CB_Karakter_PRD]    WITH PASSWORD = '******';  
    So probably the 40184 has something to do with security. Would be helpful to add this msg to e.g. http:// msdn.microsoft.com/en-us/library/windowsazure/ff394106.aspx (put space behind first / since this txt box doesn't allow me to put in links since
    my account is not verified or something...). If it's indeed about permissions that is.
    Ok after executing
    exec sp_addrolemember 'loginmanager','CB_SysAdmin_PRD'
    the CREATE DATABASE...AS COPY OF stmt still resulted in the same error. Will now try redgate again...
    Restore with redgate was succesful now. Question remains why CREATE DATABASE doesn't work anymore.

    Hello,
    Based on your description, you copy a database between two different SQL Database servers. When ACC database is copied form PRD database, the login that copied the database becomes the DBO of ACC. All database users and their permissions (but not their SIDs)
    from PRD are copied to ACC. Because of the new SID, the login from the PRC sever may not work on the new database.
    To workaround this issue, please try to use the DBO login and the ALTER USER statement to map users in the new database to logins on the new SQL Database server.
    For example: ALTER USER 'CB_SysAdmin_PRD' WITH LOGIN='loginName'
    Reference:
    Copying Databases in Windows Azure SQL Database
    Currently, I didn't find any document about error codes 40184 embedded within the message of error 40197. You can try to submit a feedback on the SQL Database feedback forum:
    http://feedback.windowsazure.com/forums/217321-sql-database
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • Accidentally dropped a Datafile

    Hi friends
    I run oracle 11.2.0.3.0 on windows machine
    I have accidentally dropped a datafile on develop DB without media recovery active, so that, I cant just turn the file offline as shown below:
    SQL> ALTER DATABASE DATAFILE 88 OFFLINE;
    ALTER DATABASE DATAFILE 88 OFFLINE
    ERROR at line 1:
    ORA-01145: offline immediate disallowed unless media recovery enabled
    What Can I do to bypass this datafile or even the tablespace that its not so important and could be lost?
    I tryed remove the tablespace without success:
    SQL> DROP TABLESPACE V_FISCO_INDX;
    DROP TABLESPACE V_FISCO_INDX
    ERROR at line 1:
    ORA-01109: database not open
    the status is mounted
    **** Can I turn on the media recovery and place the datafile offline?
    or I'll have to re-create the control file?
    If so, how?
    Thanks a lot friends

    Hi friends
    It worked now.
    SQL> alter database archivelog;
    Database altered.
    SQL> ALTER DATABASE DATAFILE 88 OFFLINE;
    Database altered.
    SQL> alter database open;
    Database altered.
    SQL> SELECT DISTINCT(OWNER) FROM DBA_TABLES WHERE TABLESPACE_NAME='V_F';
    no rows selected
    SQL> DROP TABLESPACE V_F including contents and datafiles;
    Tablespace dropped.
    SQL> SHUTDOWN IMMEDIATE
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> STARTUP MOUNT
    ORACLE instance started.
    Total System Global Area 6396977152 bytes
    Fixed Size 2265120 bytes
    Variable Size 3841986528 bytes
    Database Buffers 2533359616 bytes
    Redo Buffers 19365888 bytes
    Database mounted.
    SQL>
    SQL>
    SQL> ALTER DATABASE NOARCHIVELOG;
    Database altered.
    SQL> ALTER DATABASE OPEN
    2 ;
    Database altered.
    tks a lot.

  • Keyword behavior -- flaw or feature?

    The hierarchical keywords in Aperture are nice. There are some behaviors that I have noted and I wonder if this is by design (intellegent) or an oversight.
    First: In the Filter or Smart Album HUD you can select items by keyword. If you have nested keywords then the hierarchy will appear in parentheses, for example Dog(Mammal). I have noticed that this only works if your nesting hierarchy is two levels deep. Once you nest deeper than that the parentheses disappear and you see just the subordinate keyword--in this case "Dog". I am guessing this is by design? A long chain of nested keywords might mess up the presentation.
    Second: When a keyword is first applied to an image then made a subordinate keyword by moving the keyword in the HUD the higher level keywords don't get assigned to the image. Example I apply the keyword "Dog" to an image then move the "Dog" keyword to become subordinate to "Mammal". The keyword "Mammal" is not applied to my image. If I reapply the keyword "Dog" after it is a subordinate keyword then all the parent keywords are applied to the image at the same time and I can search on those by using the "Find text in image" entry fields.

    First: In the Filter or Smart Album HUD you can
    select items by keyword. If you have nested keywords
    then the hierarchy will appear in parentheses, for
    example Dog(Mammal). I have noticed that this only
    works if your nesting hierarchy is two levels deep.
    Once you nest deeper than that the parentheses
    disappear and you see just the subordinate
    keyword--in this case "Dog". I am guessing this is by
    design? A long chain of nested keywords might mess up
    the presentation.
    Odd, as I seem to see at least teh direct parent keyword even if that keyword is three levels deep.
    Second: When a keyword is first applied to an image
    then made a subordinate keyword by moving the keyword
    in the HUD the higher level keywords don't get
    assigned to the image. Example I apply the keyword
    "Dog" to an image then move the "Dog" keyword to
    become subordinate to "Mammal". The keyword "Mammal"
    is not applied to my image. If I reapply the keyword
    "Dog" after it is a subordinate keyword then all the
    parent keywords are applied to the image at the same
    time and I can search on those by using the "Find
    text in image" entry fields.
    I think that is more by design, think of that Keyword HUD as not a link to keywords in your images but a place to store master keys until they are used - so changing structure of keywords has no effect on any exiting images until you re-apply keywords.
    The reason I think this is by design is it removes the ability to make vast mistakes very quickly, instead you have to go through an extra stage or two. I think they are afraid some people might change the leywords all around (or remove them to clear the list) not realizing they might be altering how a lot of images are tagged.

  • A lot of information is wrong on the maps

    Hello,
    i have tried to use my GSM  as a GPS and I have seen some problems (nokia 5800 Xpress Music).
    To go from Alzate in Brianza  (Italia) to Sirmione (Italia) and a lot of information were wrong : something like 10 roundabout (I am not sure for the word, in French it is "rond point") were missing (he didn't say anything and I had to go straight). There is a road of 30-40 km that was limited (speed) and 90 km/h and everywhere the phone complained about the speed being 70 and not 90 km/h.
    More than 4 years ago, one roundabout in Alzate has been created (next to a Benet)  and the map still doesn't have it (I have deleted all the maps and downloaded them again again 3 days before leaving and it didn't change anything the map is not correct).
    When we want to go to througn Switzerland we have to allow the pay roads. It we don't enable them the software complains that there is no way to go where we want so we have to choose a point in France next to Switzerland and then travell without pay roads and after that enable pay roads and go through Switzerland and then remove the pay roads outside of Switzerland. It is not very user friendly.
    The search function is not very user friendly too.
    On other real GPS, I have to choose the country, then I start entering the city name and the program removes the letters not possible depending on the previous ones (for example I type AB and only ABC and ABD are possible then only the letter C and D are enabled) and when there are a few cities left then I have a choice between all the cities (for example I type ABC and there are only 2 cities ABCDRRTTTTTTTRR and ABCEAAAZZZZZZ the program will show the two cities and I don't have to type the remaining letters. It is a lot more user friendly and when I do a mistake in the name I still have a chance to find my city if the beginning is correct.
    The same applies to the street name.
    There is also some problems in Switzerland : sometimes the GPS thinks that I have left the highway (when there are big mountains next to me) even if there is no way out (or in from the high way. Considering that I was using the highway since more than one hour and for a few kilometers there was no way out, it should have been impossible (with the version of last year I had the problem only once with the lasr version (downloaded 25 may 2011, I had the problem 4 times)
    Thank you
    Marc

    Hello,
    Thank you for your time. For the tool to tell when there is an error, in the map, it is not really useable : you have to know where you are exactly and when you drive 200 km, you can't manage to stop everytime there is an error to write where it is (and what the error is).
    Perhaps a button on ovi maps to be able write that there is a problem could be fine. Normally, ovi maps should already be able to see that there is a problem because it thinks that I have taken the wrong way (calculating a new way to the destination because it thinks that I have turned on the right instead of going straight). So maps should remember the places and be able to list them (or ask for me if it was a round point or something lmike that).
    For the speel limitation, I have put a limit at 0 kh/h upper than the normal. If I drive at 90 kh/h, perhaps it should start wondering if there is not a problem (and so remember the laces or put a button directly to say the speed limitation is 90
    For the maps, I have the last version of the software (so all the maps have been deleted and I had to download them again but directly by wifi instead of USB).
    The first problem (round point) was there before I even bough my Nokia phone so it can not be the problem too.
    Marc

Maybe you are looking for