How to remove (or move) Here Maps

I'm short of space on my Lumia 535 since I downloaded a lot of maps. How can I remove some or all of them or move them onto the SD card? Thanks for your input.
Solved!
Go to Solution.

HERE Maps-->(...)-->download maps-->download new maps .. Long press on the Map/s you want to delete and select 'delete'
You can't move the maps to SD Card. There was an application called Lumia Storage Check Beta thru' which it was possible to store the maps on the SD Card..but I am afraid, the application is no longer published.

Similar Messages

  • How to move here map india 1.2gb to sd card

    i downloaded here map (entire india ) ,,but how to move that map to memory card ....
    Solved!
    Go to Solution.

    Map data cannot currently be stored on memory cards as far as I know. If you are short of space, other items like multimedia files and apps can be moved to memory card.

  • How to remove a movie from iCloud and iMovie Theater?

    So I figured out how to publish a movie from iMovie 10 to the Apple TV channel iMovie Theater> by using the iCloud button. But now once it's there how can I remove it? Or is this a new way for Apple to get me to purchase more space in iCloud?

    There is a another solution as in my case. I was tired of all my lousy movies and so I deleted my entire iMove libary in my user folder. That "stranded" some movies in the Theater cloud which showed up on my Apple TV.
    What I did was go to System Preferences and chose "iCloud". Then under iCloud Storage I clicked "Manage...". Here you can go under Documents, etc and delete what is "backed up" in the cloud.

  • How to remove CM movies ads

    Hi there
    Lately on google chrome and sometimes safari my windows are constantly being plagued with these 'CM movies ad'. They random appear on most websites and sometimes they are even video commercials that run on the side. Does someone know how to remove these from a mac, cause there is a bunch of sites for a PC but not mac. Can someone please help?
    thanks

    Nicholas Furha wrote:
    So i went to my extensions in google chrome and disabled this gophoto.it extensions and it seemed to work for getting rid of the CM movies ads. So if you have that problem maybe try that
    good luck guys
    See here to remove your adware: http://www.thesafemac.com/arg-gophotoit/

  • How to Remove a Movie Clip

    Hi,
    On the main timeline, I have the following code:
    external_btn.addEventListener(MouseEvent.CLICK, showMenu);
    function showMenu(e:MouseEvent):void
    var myMovieClip:MovieClip = new Member();
    addChild(myMovieClip);
    myMovieClip.x = 597.95;
    myMovieClip.y =359.15;
    in the internal movie clip, that I linked it to Member:
    In the member movie clip, I have the following code to remove the movie clip that was created in the main timeline of the root movie clip.
    release1_btn.addEventListener(MouseEvent.CLICK, goBack1);
    function goBack1(e:MouseEvent):void
    MovieClip(root).removeChild(myMovieClip);
    I received the following compiler error:
    1120: Access of undefined property myMovieClip.
    Please help me know how to resolve this error message.
    Thanks,
    Robert.

    that's (coding on more than one timeline) not good coding style, but this will correct your error and the prevent a few more:
    release1_btn.addEventListener(MouseEvent.CLICK, goBack1);
    function goBack1(e:MouseEvent):void
    MovieClip(this.parent).removeChild(this);

  • How to remove nodes in Message mapping

    Hi XI friends,
    in my idoc to file..
    i have number of segments..all segments are optional...
    i want to remove in resultanat xml file..
    please tell me how to remove if the values are not exsisted for that Segment ..
    i think its possible in message mapping..
    please guide me..
    Munna

    Hi Munna,
    Try Creating a UDF in your mapping name it like: "Create"
    Paste the below mentioned code in it
    ========================
    String str = a;
    if(str != null && str.length()>0)
    return "true";
    else
    return "false";
    ========================
    2) Save this function .
    3) Now Map like this
    (Source Node->UDF Create)->Check if it returns a string "true"--> if yes Map it with source node->add this in the "then" of an "if with out else"---->Target node.
    4) Test now in testing tool in Message mapping.
    Try it.
    it will work
    regards
    Pl: reward points if it worked

  • How to scroll or move a map

    I want to figure out how to move a map if I got objexts placed all around in a huge area and got one guy moving would I need to use scroll and if so how do I use it on this code?
    package {
        import flash.display.Sprite;
        import flash.events.MouseEvent;
        import flash.events.Event;
        import flash.events.KeyboardEvent;
        import flash.ui.Keyboard;
        public class platform extends Sprite {
            protected var hero:Hero;
            protected var char:Char;
            protected var keys:Array;
            protected const MAX_KEY:int = 128;
            public function platform() {
                hero = new Hero();
                addChild(hero);
                hero.x = 0;
                hero.y = 0;
                var a:NestedCircles = new NestedCircles(true, 0xff0000);
                var b:NestedCircles = new NestedCircles(true, 0x0f0ff0);
                var c:NestedCircles = new NestedCircles(false, 0x000ff0);
                a.x = 100;
                b.x = 200;
                c.x = 300;
                a.y = b.y = c.y = 200;
                addChild(a); addChild(b); addChild(c);
                stage.addEventListener(KeyboardEvent.KEY_DOWN, onKey);
                stage.addEventListener(KeyboardEvent.KEY_UP, onKey);
                keys = new Array(MAX_KEY);
                char = new Char();
                addChild(char);
                char.x = stage.stageWidth/2;
                char.y = stage.stageHeight/2;
                addEventListener(Event.ENTER_FRAME, onEnterFrame);
                if(char.x >= stage.stageWidth){
                scroll()
            protected function onKey(event:KeyboardEvent):void {
                if (event.keyCode >= MAX_KEY) return;
                keys[event.keyCode] = (event.type == KeyboardEvent.KEY_DOWN);
            protected function onEnterFrame(event:Event):void {
                if (keys[Keyboard.UP]) char.y -= char.height;
                if (keys[Keyboard.DOWN]) char.y += char.height;
                if (keys[Keyboard.LEFT]) char.x -= char.width;
                if (keys[Keyboard.RIGHT]) char.x += char.width;
    import flash.display.*;
    import flash.events.MouseEvent;
    class NestedCircles extends Sprite {
        public var child:NestedCircles;
        protected var stroke:Shape;
        public function NestedCircles(useRoll:Boolean, color:uint = 0,
                                      size:Number = 60, isChild:Boolean = false) {
            graphics.beginFill(color, 0.25);
            graphics.drawCircle(0, 0, size);
            graphics.endFill();
            stroke = new Shape();
            addChild(stroke);
            stroke.graphics.lineStyle(5, 0xffff00);
            stroke.graphics.drawCircle(0, 0, size);
            stroke.visible = false;
            if (useRoll) {
                addEventListener(MouseEvent.ROLL_OVER, handler);
                addEventListener(MouseEvent.ROLL_OUT, handler);
            } else {
                addEventListener(MouseEvent.MOUSE_OVER, handler);
                addEventListener(MouseEvent.MOUSE_OUT, handler);   
            if (!isChild) {
                child = new NestedCircles(useRoll, color, size/2, true);
                addChild(child);
                child.y = -size;
        protected function handler(event:MouseEvent):void {
            trace(event.target.name, event.type);
            switch (event.type) {
                case MouseEvent.MOUSE_OUT:
                case MouseEvent.ROLL_OUT:
                    stroke.visible = false;
                    event.stopPropagation();
                    break;
                case MouseEvent.MOUSE_OVER:
                case MouseEvent.ROLL_OVER:
                    stroke.visible = true;
                    event.stopPropagation();
                    break;
    import flash.display.Shape;
    class Hero extends Shape {
        public function Hero() {
            graphics.beginFill(0x10c010);
            graphics.drawRect(0, 0, 500, 500);
            graphics.endFill();
    import flash.display.Shape;
    class Char extends Shape {
        public function Char() {
            graphics.beginFill(0x000000);
            graphics.drawRect(0, 0, 12, 30);
            graphics.endFill();

    Scrolling normally just involves incrementally adjusting the x or y property of an object via some control.  I doubt anyone is going to try to decipher your code to see where anything in the way of scrolling might fit in.

  • How to remove inser html here from page

    I have just inserted a contact form made externally and remotely hosted to my contact page. Unfortunately there is a totally unnecessary 'Insert your html here 'above the form. Please can someone tell me how to remove it. I made the form in 123 form maker easy to do brilliant customer service.

    Hello,
    Please right click onthe form and click on Edit HTML.
    Now at the top of the code it might have a "insert your HTMl Here". Please delete it and click  on "OK"
    Regards,
    Sachin

  • How to remove red pin om map app

    how do i remove red pin on map app,im talking about red pin not the blue pin?

    The label that is with the pin. Touch the blue arrow to the side of it and then touch where it says Remove Pin.
    EDIT: I just re-read what you said. If it is a red pin, it is from a searched address. In that one, you have to cancel the search and the pin will go away.
    Message was edited by: ChrisJ4203

  • How to remove a movie from iMovie theater

    It was very easy to create a movie in iMovie, and click on "Share to Theater". But no amount of clicking, pressing delete, pressing Command Delete, or working through menus lets me remove the movie from Theater. I modified the Project, and now I want to replace it with a movie of the same name. What am I missing? How do I remove a movie in Theater, or at least update it with the latest?

    Hello John,
    It sounds like you should have been able to delete the movie from the Theater with what you were doing.
    Checking the iMovie Help, this is what I find.
    Add, remove, and play clips and projects in iMovie Theater - iMovie Help
    Delete a movie from the Theater
    Items in iMovie Theater can exist in the Theater only, or in the Theater and in iCloud. If you delete a movie from the Theater, it’s removed from iCloud as well. For more information, see Set up iMovie Theater and iCloud.
    Click the Theater button in the toolbar.
    Select the movie you want to delete.
    Press Delete.
    In the dialog that appears, click Delete Everywhere.
    The movie is deleted from the Theater and from iCloud.
    Best,
    Nubz

  • How to remove 'Please click here to Respond' link in email notification?

    Hi All,
    The links in the workflow email notification that goes to timecard approvers when a timecard has been submitted.
    It is causing a lot of confusion to the customer, so we would like the "Please click here to Respond" and "Click here to view attachment" be removed.
    The "Please click here to Respond" is causing more problems but it would be great if both could be removed?
    Can any one please tell me how to remove the above links in wokflow email notification?
    it's urgent. Thanks in advance.
    Thanks,
    Prasad Raju

    Hi Prasad,
    I need similar kind of requirment,did you get any resolution for this ISSUE???
    Thanks
    srinivas.L

  • How to remove 3D view in Maps?

    How do I remove the 3D view from Maps so that it STOPS accidentally switching to the extremely pathetic and annoying 3D view EVERY TIME I try to zoom in?!

    I want to REMOVE the 3D option so it NEVER switches to 3D again.  That button switches it between normal view and 3D view only. My issue is Every time I try to zoom, it switches to 3d view instead of zooming.  I have to keep hitting that button to switch it back over and over and over again.   it is so annoying!  Does anyone else have this problem?  Anybody else use the zoom function in Maps?

  • How to remove red pin from map app when dropped

    How do i remove or delete the red pin on the map app when it dropped?

    The label that is with the pin. Touch the blue arrow to the side of it and then touch where it says Remove Pin.
    EDIT: I just re-read what you said. If it is a red pin, it is from a searched address. In that one, you have to cancel the search and the pin will go away.
    Message was edited by: ChrisJ4203

  • How to remove CDATA from XSLT mapping result

    Dear All,
    Using the following code:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
         <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
         <xsl:template match="/">
              <DlrDiscItemWise>
                   <DlrDiscItemWiseXML>
                        <xsl:text disable-output-escaping="yes"><![CDATA[<![CDATA[]]></xsl:text>
                        <xsl:copy-of select="."/>
                        <xsl:text disable-output-escaping="yes"><![CDATA[]]]]></xsl:text>
                        <xsl:text disable-output-escaping="yes"><![CDATA[>]]></xsl:text>
                   </DlrDiscItemWiseXML>
              </DlrDiscItemWise>
         </xsl:template>
    </xsl:stylesheet>
    I am getting result as
    <?xml version="1.0" encoding="UTF-8"?><DlrDiscItemWise><DlrDiscItemWiseXML><![CDATA[<ns0:MT_DlrDis_Sender xmlns:ns0="http://MTSINDIA/TC/DealerDiscount"><ITEM><nDlrAddEdit>1</nDlrAddEdit><nItemCode>101000080</nItemCode><nItemDisc>100</nItemDisc><dtDiscFromdt>15/May/2010</dtDiscFromdt><dtDiscToDt>31/may/2010</dtDiscToDt><nItemAddDisc/><dtAddDiscFromDt/><dtAddDiscToDt/><nDlrTypeCode/><nItemDisQtyMulti/><nItemDiscQtyFree/><sItemDiscPerAmt/><sItemDiscType/><nDlrCode>10010000088</nDlrCode><nCircleCode>4</nCircleCode></ITEM></ns0:MT_DlrDis_Sender>]]></DlrDiscItemWiseXML></DlrDiscItemWise>
    but client doesnot want <![CDATA] and ]] at the end. Basically client doesn't want CDATA tag as it is throwing error wihile collecting message in Web Service.
    Please help!!

    Hi,
    You remove CDATA from xsl program which you are using in mapping so that it will come in output. Because CDATA we will use in DTD only, not required in XSL program.
    thanks,
    madhu

  • How to remove/remap keyboard shortcut mapping in firefox ?

    I have a text editor that uses CTRL-SHIFT+P for macro playback and pressing the sequence in my text editor is always launching an instance of firefox. How can I remove/remap this kb shortcut in firefox ?

    You need automator to create services, as detailed in http://discussions.apple.com/thread.jspa?threadID=2241804 a four-parter by Sal Saghoian on *Automation in Snow Leopard*
    This, describes old and new automator—services stuff:
    http://www.reynoldsftw.com/2009/08/automator-and-finder-interactions-in-os-x-10- 6/
    Alternatively, just save the script
    *+tell application "Firefox" to activate+*
    as an app, put it on the Dock, and click it to activate it. However, seems simpler just to put the FF icon on the Dock and a single click launches it. Why would you want a service or AS to do the same thing?

Maybe you are looking for

  • Image zone/Volume bar

    HP Desktop M7240UK Windows 7 Hi I recently upgraded to Windows 7 from XP and I have lost the HP Image zone,how can I reinstall it?. Also on my keyboard I have volume controls which when pressed would bring up a green volume bar on the monitor, this h

  • SQL Developer export forgot to check to include semicolons in DDL

    Hi, I used the SQL Developers Export-function (select tables and right click on them, then select export) to backup tables. However, I forgot to set the 'Abschlusszeichen' (sorry for the german). That apparently means my create table statements are n

  • Restrict value list (F4) at variable selection screen

    Hi, we have a variable of type "manual input" so that it appears at the selection screen before executing the query. The value-list (F4) for this variable provides every value of masterdata of the infoobject. But here is the problem: I want only thos

  • ORA-01041 error when duplicating database to new host

    I'm using RHEL 5 with Oracle 11g and I'm testing data guard. I am trying to setup data guard by following this link: http://www.databasejournal.com/features/oracle/article.php/3816751/Oracle-11g-Data-Guard-Building-a-Physical-Standby-Database.htm I u

  • How can I transfer my favorites from explorer to foxfire?

    I am looking to transfer my favorites list from explorer to foxfire. Is there a simple solution to this?